POST api/v1/AllianderStatusUpdate

Stuur een statusbericht door

Request Information

URI Parameters

None.

Body Parameters

Gegevens van de statusupdate

AllianderStatusUpdate
NameDescriptionTypeAdditional information
Ean

string

Required

Max length: 255

EanDate

date

None.

CustomerReference

Opdrachtgeverreferentie: Dit is de referentie waaraan het dossier herkenbaar is voor de opdrachtgever. Dit is meestal het interne dossiernummer van de klant

string

Required

Max length: 50

Date

date

Required

FlanderijnCaseNumber

integer

Required

StatusCode

EnumAllianderStatusUpdateCodes

Required

StatusDescription

string

Max length: 255

Request Formats

application/json, text/json

Sample:
{
  "Ean": "sample string 1",
  "EanDate": "2024-09-19T21:01:09.0212455+02:00",
  "CustomerReference": "sample string 3",
  "Date": "2024-09-19T21:01:09.0212455+02:00",
  "FlanderijnCaseNumber": 5,
  "StatusCode": 1010,
  "StatusDescription": "sample string 6"
}

application/xml, text/xml

Sample:
<AllianderStatusUpdate xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <CustomerReference>sample string 3</CustomerReference>
  <Date>2024-09-19T21:01:09.0212455+02:00</Date>
  <FlanderijnCaseNumber>5</FlanderijnCaseNumber>
  <StatusCode>Inhuizing</StatusCode>
  <StatusDescription>sample string 6</StatusDescription>
  <Ean>sample string 1</Ean>
  <EanDate>2024-09-19T21:01:09.0212455+02:00</EanDate>
</AllianderStatusUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResponse
NameDescriptionTypeAdditional information
Message

string

None.

Status

ResponseStatusCode

Required

Response Formats

application/json, text/json

Sample:
{
  "Message": "sample string 1",
  "Status": "Success"
}

application/xml, text/xml

Sample:
<ApiResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Message>sample string 1</Message>
  <Status>Success</Status>
</ApiResponse>