Here is the Expedipro API reference documentation providing detailed schema and request examples for various usages.
Pour les lecteurs français : seule cette introduction API resuest est en anglais.
Before digging into individual request schema, let's talk about their commun parts : their HTTPS headers, HTTPS status code, etc. BTW if you like markdown, give a try to https://stackedit.io/app
API request
Most requests are associated with json schema that should be read carefully to use the correct data type for each json properties expected by the API.
Each request provides at least 2 exemples of response : one successful and one error. Please read both to build a robust client.
Structure
Description
HTTPS method
- GET - POST
HTTPS headers
4 headers are required: Authorization Custom-Version Content-Type Accept
Query parameter
JSON body
{} required for most calls
HTTP headers
The commonly used HTTPS request headers are:
Header
Description
Authorization
Required, specified user identity. The syntax is: Authorization: Bearer Where is provided by a prior API call to /identity/gettoken
Accept
Required, specifies the response format. The syntax is: Accept: application/ Where is json
Content-Type
Required, specifies the request format. POST is Content-Type: application/json GET is Content-Type: application/xhtml+xml or Content-Type: application/x-www-form-urlencoded
Custom-Version
Optional, specifies the API version. The syntax is: Custom-Version: Where is 2 as of January 2018
API response
The API calls return HTTPS status codes with return JSON response bodies that include information about the resources targeted by the request.
HTTP success codes
Status code
Description
200 OK
The request succeeded
201 Created
A POST method successfully created a resource. If the resource was already created by a previous execution of the same method, for example, the server returns the HTTP 200 OK status code
204 No Content
The server successfully executed the method but returns no response body
HTTP error codes
In the responses for failed requests, the returns HTTPS status codes are > 4XX. For all errors, the API returns an error response body that includes additional error details in this format (see http://jsonapi.org/format/#errors for more informations) :
json
{"errors":[{"status":`4XX`,"code":"category of the error","detail":"description"}]}
Status code
Typical error code and error message
Cause
400 Bad Request
INVALID_REQUEST
Indicates one of these conditions: - The API cannot convert the payload data to the underlying data type. - The data is not in the expected data format. - A required field is not available. - A simple data validation error occurred.
401 Unauthorized
AUTHENTICATION_FAILURE
The request requires authentication and the caller did not provide valid (including not obsolete) credentials
403 Forbidden
NOT_AUTHORIZED
The client is not authorized to access this resource although it might have valid credentials
404 Not Found
RESOURCE_NOT_FOUND
The server did not find anything that matches the request or the resource is not available (e.g. no data exists in the database at that key).
405 Method Not Allowed
METHOD_NOT_SUPPORTED
The server does not implement the requested URL or HTTP method.
406 Not Acceptable
MEDIA_TYPE_NOT_ACCEPTABLE
The server cannot use the client-request media type to return the response payload. For example, this error occurs if the client sends an Accept: application/xmlrequest header but the API can generate only an application/json response.
415UnsupportedMediaType
UNSUPPORTED_MEDIA_TYPE
The API cannot process the media type of the request payload. For example, this error occurs if the client sends a Content-Type: application/xmlrequest header but the API can only accept application/json request payloads.
422 Unprocessable Entity
UNPROCCESSABLE_ENTITY The API cannot complete the requested action, or the request action is semantically incorrect or fails business validation.
The API cannot complete the requested action and might require interaction with APIs or processes outside of the current request. No systemic problems limit the API from completing the request. For example, this error occurs for any business validation errors, including errors that are not usually of the 400 type.
429 Unprocessable Entity
RATE_LIMIT_REACHED
The rate limit for the user, application, or token exceeds a predefined value
500 Internal Server Error
INTERNAL_SERVER_ERROR
A system or application error occurred. Although the client appears to provide a correct request, something unexpected occurred on the server.
503 Service Unavailable
SERVICE_UNAVAILABLE
The server cannot handle the request for a service due to temporary maintenance.