Public
Documentation Settings

expedipro:{api:v2}

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.

StructureDescription
HTTPS method- GET
- POST
HTTPS headers4 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:

HeaderDescription
AuthorizationRequired, specified user identity. The syntax is:
Authorization: Bearer
Where is provided by a prior API call to /identity/gettoken
AcceptRequired, specifies the response format. The syntax is:
Accept: application/
Where is json
Content-TypeRequired, 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-VersionOptional, 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  codeDescription
200 OKThe request succeeded
201 CreatedA 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 ContentThe 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 codeTypical error code and error messageCause
400 Bad RequestINVALID_REQUESTIndicates 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 UnauthorizedAUTHENTICATION_FAILUREThe request requires authentication and the caller did not provide valid (including not obsolete) credentials
403 ForbiddenNOT_AUTHORIZEDThe client is not authorized to access this resource although it might have valid credentials
404 Not FoundRESOURCE_NOT_FOUNDThe 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 AllowedMETHOD_NOT_SUPPORTEDThe server does not implement the requested URL or HTTP method.
406 Not AcceptableMEDIA_TYPE_NOT_ACCEPTABLEThe 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.
415 Unsupported Media TypeUNSUPPORTED_MEDIA_TYPEThe 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 EntityUNPROCCESSABLE_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 EntityRATE_LIMIT_REACHEDThe rate limit for the user, application, or token exceeds a predefined value
500 Internal Server ErrorINTERNAL_SERVER_ERRORA system or application error occurred. Although the client appears to provide a correct request, something unexpected occurred on the server.
503 Service UnavailableSERVICE_UNAVAILABLEThe server cannot handle the request for a service due to temporary maintenance.
AUTHORIZATIONBearer Token
Token