GET api/v1/students/financialDocumentCustomer?id={id}&externalAccountingReference={externalAccountingReference}&legalId={legalId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| externalAccountingReference | string |
None. |
|
| legalId | string |
None. |
Body Parameters
None.
Response Information
Resource Description
CustomerModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| AccountId | integer |
None. |
|
| Name | string |
None. |
|
| Status | byte |
None. |
|
| Address | string |
None. |
|
| City | string |
None. |
|
| ZipCode | string |
None. |
|
| Country | string |
None. |
|
| Comment | string |
None. |
|
| ExternalAccountingReference | string |
None. |
|
| PaymentType | byte |
None. |
|
| LegalId | string |
None. |
|
| Bank | byte |
None. |
|
| BankBranch | string |
None. |
|
| BankAccount | string |
None. |
|
| ExternalId | globally unique identifier |
None. |
|
| MunicipalityOwnerId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"AccountId": 2,
"Name": "sample string 3",
"Status": 64,
"Address": "sample string 5",
"City": "sample string 6",
"ZipCode": "sample string 7",
"Country": "sample string 8",
"Comment": "sample string 9",
"ExternalAccountingReference": "sample string 10",
"PaymentType": 64,
"LegalId": "sample string 11",
"Bank": 64,
"BankBranch": "sample string 12",
"BankAccount": "sample string 13",
"ExternalId": "5191a777-6cb9-43e9-9493-dc0b6c5fa06b",
"MunicipalityOwnerId": "e32f12ae-631e-4dc8-8172-09a51d61b855"
}
application/xml, text/xml
Sample:
<CustomerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Emalogic.BillBee.Common.Models"> <AccountId>2</AccountId> <Address>sample string 5</Address> <Bank>64</Bank> <BankAccount>sample string 13</BankAccount> <BankBranch>sample string 12</BankBranch> <City>sample string 6</City> <Comment>sample string 9</Comment> <Country>sample string 8</Country> <ExternalAccountingReference>sample string 10</ExternalAccountingReference> <ExternalId>5191a777-6cb9-43e9-9493-dc0b6c5fa06b</ExternalId> <Id>1</Id> <LegalId>sample string 11</LegalId> <MunicipalityOwnerId>e32f12ae-631e-4dc8-8172-09a51d61b855</MunicipalityOwnerId> <Name>sample string 3</Name> <PaymentType>64</PaymentType> <Status>64</Status> <ZipCode>sample string 7</ZipCode> </CustomerModel>