REST API (partially deprecated)
Overview
Our REST API is partially deprecated and is aimed to be fully replaced by our GraphQL API
Base URL
All URLs referenced in the documentation have the following base:
Standard platform | High availability platform |
---|---|
|
|
The iAdvize REST API is served over HTTPS.
Authentication
The API key must be attached to each request. You can use it in one of the following ways:
Passed in as a
X-API-Key
HTTP headerPassed in as a
key
GET parameterPassed in as the username (with an arbitrary password) via
HTTP Basic authentication
Calls, errors & responses
Authentication failed
Read
GET /my_resource
Common filters
Filter | Description | Values |
---|---|---|
page | Page number |
|
limit | Maximum number of resources per page (maximum possible value is 100) |
|
full | Show all fields of the resource |
|
Use the *
character to broaden the scope of your search. E.g.: filters[name]=*uli*
GET /my_resource/123
GET /my_resource/456
(with error)
Last updated