Accept | Determines the format of the contents that will be returned by the server. | Accept: application/json |
Authorization | - Basic: Authentication token according to the “ Basic Authentication over HTTPS ” principle, i.e. ' Basic ' followed by the <login>:<password> string encoded in Base64. Conversion is automatically supported for clients such as Postman or Insomnia.
- OAuth2: Access token according to the “ Single Sign-on ” principle, i.e. ' Bearer ' followed by l' access_token. See above.
| - Basic example: Authorization: Basic YWRtaW46YWRtaW4=
- Oauth2 example: Authorization: Bearer eyJhbGciOiJSUzI1NiIsInR5cCIgOidUIiw...
|
Content-type | Determines the format of the contents sent to the server. | content-type: application/json |
Method | See our open-api for the method to be used depending on the resource. | GET | POST | PUT | DELETE |