| GET, POST | /fibuscan/Onlinehandel/AbrechnungsMsgSenden |
|---|
export class AbrechnungsMsgSendenResponse
{
public result: boolean;
public error_msg: string;
public constructor(init?: Partial<AbrechnungsMsgSendenResponse>) { (Object as any).assign(this, init); }
}
export class AbrechnungsMsgSendenRequest
{
public Fileguid: string;
public ZeilNummer: number;
public AbrechnungsGuid: string;
public OnlinehandelDateiId?: number;
public msg: string;
public fileName: string;
public constructor(init?: Partial<AbrechnungsMsgSendenRequest>) { (Object as any).assign(this, init); }
}
TypeScript AbrechnungsMsgSendenRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /fibuscan/Onlinehandel/AbrechnungsMsgSenden HTTP/1.1
Host: ws4.fibudata.net
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"Fileguid":"String","ZeilNummer":0,"AbrechnungsGuid":"String","OnlinehandelDateiId":0,"msg":"String","fileName":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length
{"result":false,"error_msg":"String"}