{
"success": true|false,
"message": "Message",
"meta": {...} or null,
"data": {...} or null,
"errors": {...} or null,
"docs": "http ... /docs"
}
Indicates whether the request was successful (true or false).
A descriptive message about the request status (string).
Additional metadata related to the request (array or null), appears only in case of data list requests. See the following paragraph below (Meat Fields Description)
The response data (array or null).
Detailed error information when response is false, appears only in case of an error. (array or null).
Documentation link for the API (web pages).
{
"meta": {
"current_page": 1,
"last_page": 5,
"total": 42,
"per_page": 10,
"count": 10,
"has_more": true
}
}
Current page number.
Total number of pages.
Total number of recordes in database.
The number of records to retrieve per a single page.
The total number of recordes retrieved by the query, in last page can be less than the per_page value.
Indicates whether there are more pages to retrieve.