Endpoint specification
Endpoint Specification
This page describes the request and response format for API requests on the platform. Here at Payfonte we strictly adhere to conventional HTTP response codes.
HTTP Requests
All standard HTTP Conventions are to be observed. You can read more about them on the following links: API Design by Microsoft API design best practices
📘 HTTP Status Codes
HTTP Status codes are heavily used on the platform to denote the status of requests
All HTTP requests are to be in JSON except in some cases of multi-part form data(Uploading files).
HTTP Responses
Responses are required to have the same base structure across all services. HTTP status codes are to be used to determine if a request was successful or not. We have three basic response type: success, error and paginated responses. Examples of each are listed below:
👍 Successful Responses (2XX)
Success ResponseThe base structure should be the data layer, this should be consistent for all the 2xx response on the platform.
!> ❗️ Error Responses (4XX - 5XX) The base structure should be the error layer, this should be consistent for all the non-2xx responses on the platform. The error should be very much descriptive.
📘 Paginated Response
Paginated requests are to come with the page(current page the user wants to see) and the limit(maximum amount of data to return). The default page number should be 1 and the default limit should is 50. The paginated response contains 4 base properties
- page: This is the current page the user is. default is 1
- pages: This is the total pages to be shown which are gotten from ‘ceil(total count of data/limit)’
- total: total count of data. An example is the result of ‘select count (*) from `tableName’
- data: this is the data gotten from the data source
Filtering
All get request query params are to be used for filtering except for “page”, “limit” (which are being used for pagination) and any fields that are not allowed to be used for filtering e.g “password” or “pin” field.