Search manifests (GET)
Search manifests is a Notify API method that can be used to search manifests for a source entity. Search can be filtered by defining manifest state.
See also:
Usage
Request method:
GET
Request URL:
{base_url}/notify-api/tenants/local/installations/local/environments/local/source-systems/{sourceSystemName}/source-entities/{sourceEntityName}/manifests
where:
{baseUrl}, {sourceSystemName}, {sourceEntityName} see Notify API.
Optionally define a query string to get manifests in a specific state:
?state={manifestState}
where:
{manifestState} is ARCHIVED, FAILED, NOTIFIED or OPEN.
Examples
Search open manifests for an entity
Property | Value |
---|---|
sourceSystemName | taxidata |
sourceEntityName | ratecode_description |
manifestState | OPEN |
Request method:
GET
Request URL:
{base_url}/notify-api/tenants/local/installations/local/environments/local/source-systems/taxidata/source-entities/ratecode_description/manifests?state=OPEN
Response code:
200 (OK)
Response body:
[
{
"id": "c026bb41-e4c4-48bf-9ac6-06f3f2e44129",
"state": "OPEN",
"columns": [],
"batch": 1618915514245,
"fullscanned": true,
"delim": "COMMA",
"skiph": 1,
"compression": "GZIP",
"format": "CSV",
"created": "2021-04-20T10:45:14.245846",
"modified": "2021-04-20T11:55:36.523409"
}
]