env('MAX_API_LIMIT_PER_PAGE', 100), /* |-------------------------------------------------------------------------- | Format of the timestamp |-------------------------------------------------------------------------- | | This defines the format of the timestamp that is returned on most API | calls. | */ 'timestamp_format' => env('API_TIMESTAMP_FORMAT', 'Y-m-d\TH:i:s\Z'), /* |-------------------------------------------------------------------------- | Format of the date timestamp |-------------------------------------------------------------------------- | | This defines the format of the date that is returned on some API calls | when it requires a date only. | */ 'date_timestamp_format' => env('API_DATE_TIMESTAMP_FORMAT', 'Y-m-d'), /* |-------------------------------------------------------------------------- | Error codes for the API |-------------------------------------------------------------------------- */ 'error_codes' => [ 30 => 'The limit parameter is too big', 31 => 'The resource has not been found', 32 => 'Error while trying to save the data', 33 => 'Too many parameters', 40 => 'Invalid query', 41 => 'Invalid parameters', 42 => 'Unauthorized', ], ];