Working with the Lookups API
Overview
Check the list of available endpoints and methods in the Lookups API:
Endpoints and methods | Description |
---|---|
GETÂ | Display information on the lookups existing on a given domain. |
GETÂ | Return information of a specific lookup. |
GETÂ | Query the last jobs of a specific lookup. |
GET | Query the last jobs of a specific lookup given its ID. |
POSTÂ | Create a new lookup. |
PUT | Update a specific lookup. |
DELETe | Delete a specific lookup. |
Endpoints and methods
GETÂ /lookup/{domain}
Display information on the lookups existing on a given domain.
GET /lookup/{domain}/{name}
Return information of a specific lookup.
GET /lookup/{domain}/{name}/job
Query the last jobs of a specific lookup.
GET /lookup/{domain}/{name}/job/{id}
Query the last jobs of a specific lookup given its ID. You can get this ID when you create, update or delete a lookup using this API, under the id
parameter in the response.
POST /lookup/{domain}/{name}/deploy-config
Create a new lookup.
PUT lookup/{domain}/{name}/deploy-config
Update a specific lookup.
DELETE /lookup/{domain}/{name}
Delete a specific lookup.
Â