Check the list of available endpoints and methods in the Lookups API:
Endpoints and methods | Description | |
---|---|---|
1 |
| Display information on the lookups existing on a given domain. |
2 |
| Return information of a specific lookup. |
3 |
| Query the job UUIDs of a specific lookup. |
4 |
| Query the statuses of a lookup job. |
5 | Advanced mode
| Advanced mode Create a new lookup. |
6 |
| Create a new lookup using a CSV (application/json request body) |
7 |
| Create a new lookup using a CSV (multipart/form-data request body) |
8 |
| Create a new lookup based on a static query. |
9 |
| Create a new lookup based on a periodic query. |
10 |
| Create a new lookup based on a sliding window query. |
11 | Advanced mode
| Advanced mode Update a specific lookup. |
12 |
| Update a CSV lookup (application/json request body) |
13 |
| Update a CSV lookup (multipart/form-data request body) |
14 |
| Update a lookup based on a static query. |
15 |
| Update a lookup based on a periodic query. |
16 |
| Update a lookup based on a sliding window query. |
17 |
| Send a request to delete a specific lookup. |
/lookup/{domain}
Display information on the lookups existing on a given domain.
Path parametersAdd the following path parameters as part of the endpoint:
Query string parametersQuery string parameters are optionally added after the path parameters, preceded by a question mark (
ExampleFind below a request example in cURL language. This request will return information about the 10 oldest lookups created in the domain indicated. Learn how to authorize your request in this article.
And this request will return information about all the lookups owned by the user domain and also the ones visible to them in other domains:
|
/lookup/{domain}/{name}
Return information of a specific lookup.
Path parametersAdd the following path parameters as part of the endpoint:
ExampleFind below a request example in cURL language. This request will return information about the lookup called myLookup created in the domain indicated. Learn how to authorize your request in this article.
|
/lookup/{domain}/{name}/job
Query the job UUIDs (Universally Unique IDentifier) of a specific lookup. A new job is created for each create, update or delete process that is initiated. Each job is identified by a unique ID, or UUID.
You will get the last 10 UUIDs for the requested lookup. The list is ordered chronologically being the first job UUID the oldest and the last one the newest.
Path parametersAdd the following path parameters as part of the endpoint:
ExampleFind below a request example in cURL language. This request will return information about the last jobs generated by the lookup called myLookup created in the domain indicated. Learn how to authorize your request in this article.
|
/lookup/{domain}/{name}/job/{id}
Query the statuses of a lookup job given its UUID. You can get a job UUID using the request explained above.
You will get the last 50 statuses for the requested lookup job. The list is ordered chronologically being the first status the oldest and the last one the newest.
These are the possible status codes you may get in your response:
Code | Status |
---|---|
| Lookup creation started. |
| Lookup successfully created. |
| Error creating lookup. |
| Lookup synchronous upload started. |
| Successful lookup synchronous upload. |
| Lookup synchronous upload failed. |
| Lookup asynchronous upload started. |
| Successful lookup asynchronous upload started. |
| Lookup asynchronous upload failed. |
| Lookup deletion started. |
| Lookup successfully deleted. |
| Error deleting lookup. |
Path parametersAdd the following path parameters as part of the endpoint:
ExampleFind below a request example in cURL language. This request will return information about the lookup called myLookup created in the domain indicated. Learn how to authorize your request in this article.
|
/lookup/{domain}/{name}/deploy-config
Create a new lookup.
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request JSON body must include the following objects and key-value pairs. Click them in the following list to see its details:
Example value:
Check below an example of request body:
|
/lookup/{domain}/{name}/deploy-csv
Simplified endpoint to create a new lookup from a CSV file (application/json request body).
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request JSON body must include the following objects and key-value pairs. Click them in the following list to see its details:
Check below an example of request body:
|
/lookup/{domain}/{name}/deploy-csv
Simplified endpoint to create a new lookup from a CSV file (multipart/form-data request body).
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request multipart/form-data body must include the CSV file and an associated JSON configuration object. Click them in the following list to see its details:
Check below an example of request body:
|
/lookup/{domain}/{name}/deploy-static-query
Simplified endpoint to create a new lookup based on a static query.
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request JSON body must include the following objects and key-value pairs. Click them in the following list to see its details:
Check below an example of request body:
|
/lookup/{domain}/{name}/deploy-periodic-query
Simplified endpoint to create a new lookup based on a periodic query.
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request JSON body must include the following objects and key-value pairs. Click them in the following list to see its details:
Check below an example of request body:
|
/lookup/{domain}/{name}/deploy-sliding-window-query
Simplified endpoint to create a new lookup based on a sliding window query.
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request JSON body must include the following objects and key-value pairs. Click them in the following list to see its details:
Check below an example of request body:
|
lookup/{domain}/{name}/deploy-config
Update a specific lookup.
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request JSON body must include the following objects and key-value pairs. Click them in the following list to see its details:
Example value:
Check below an example of request body:
|
lookup/{domain}/{name}/deploy-csv
Update a CSV lookup (application/json request body).
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request JSON body must include the following objects and key-value pairs. Click them in the following list to see its details:
Check below an example of request body:
|
lookup/{domain}/{name}/deploy-csv
Update a CSV lookup (multipart/form-data request body).
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request multipart/form-data body must include the CSV file and an associated JSON configuration object. Click them in the following list to see its details:
Check below an example of request body:
|
lookup/{domain}/{name}/deploy-static-query
Update a lookup based on a static query.
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request JSON body must include the following objects and key-value pairs. Click them in the following list to see its details:
Check below an example of request body:
|
lookup/{domain}/{name}/deploy-periodic-query
Update a lookup based on a periodic query.
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request JSON body must include the following objects and key-value pairs. Click them in the following list to see its details:
Check below an example of request body:
|
lookup/{domain}/{name}/deploy-sliding-window-query
Update a lookup based on a sliding window query.
Path parametersAdd the following path parameters as part of the endpoint:
Request bodyThe request JSON body must include the following objects and key-value pairs. Click them in the following list to see its details:
Check below an example of request body:
|
/lookup/{domain}/{name}
Send a request to delete a specific lookup.
Path parametersAdd the following path parameters as part of the endpoint:
ExampleFind below a request example in cURL language. This request will return information about the 10 oldest lookups created in the domain indicated. Learn how to authorize your request in this article.
|