master
Raphael Cerveaux 2018-11-15 15:37:13 +01:00 committed by GitHub
parent 964886ae8f
commit 7477d98ccb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 4 deletions

View File

@ -19,22 +19,43 @@ Content-Type:application/x-www-form-urlencoded
Accept:application/json Accept:application/json
``` ```
When signed in, you must provide the access token:
```
Authorization: Bearer <Access_token>
```
## API response ## API response
The response code will never be in the response. The response code will never be in the response.
**Make operations** (create, update, delete ...) **Make operations** (create, update, delete ...)
```js Validation error example:
```json
{ {
success: false, "success": false,
message: 'Oups!' "message": "Form is invalid.",
"errors": [
{
"message": "\"password\" is required",
"path": [
"password"
],
"type": "any.required",
"context": {
"key": "password",
"label": "password"
}
}
]
} }
``` ```
**Getting objects** (read) **Getting objects** (read)
```js ```json
{ {
"_id": "5bec2fed257ab94172cd3874", "_id": "5bec2fed257ab94172cd3874",
"firstname": "Raphael", "firstname": "Raphael",