API Keys
Retrieve API Keys
Retrieve API Key
GET
`/v1/api-keys/:api-key`
Get a single contact using its id
.
List API Keys
Example
GET
`/v1/api-keys`
When you want to retrieve multiple API Keys, your data
property on the result will always be an array
even if you don't have any API Keys.
Pagination
If the has_more
property on the pagination object is set to true, you know there are more API keys in the database that have not been returned to you. The pagination object also has a page
property indicating your current offset and a limit property. The total_count property in pagination returns the the total number of API Keys in the database.
By default the page
is set to 1
and the limit
is 25
.
If we want to query for keys 26 - 50, we would request page 2 with a query parameter.