Requests
Making a Request
Host
The host for Web API v1 requests is always https://api.iafcertsearch.org/api/client/v1
All requests must be made over HTTPS. The API does not support HTTP.
Authorization Header
You must provide an authorization header as described in Authentication.
HTTP Verbs
GET
Retrieve a resource or group of resourcesPOST
Create a new resourcePUT
Update an existing resourceDELETE
Delete an existing resourceOPTIONS
View allowed verbs against a specific resource
Accept Header
The API provides JSON responses. It doesn’t currently require the accept header, but might in the future. If not set, the API will use application/json
.
Arrays of Data
When you send an array of data in a GET
request, you will include the parameter multiple times on the URL. The parameter name does not require brackets.
Formatting Your Request
Request Body
When submitting data to a resource via POST
or PUT
, you must submit your payload in JSON.
Pagination
Some GET
resources allow for retrieval of information in batches. We will provide the query parameters in the resource documentation when applicable.
When requesting multiple items, we will default the request limit
to 20
items. You can specify a different limit using the limit
parameter when you need to. The maximum value for the limit
parameter that we accept is 100
.
Below you can see an example of an API request which retrieves the first 100 records as specified by the limit=100
and offset=0
parameters.
To retrieve the next batch of records, increment the offset parameter by 1
.
Successful Requests
Last updated