This API call allows you to retrieve the complete resources (evidence) connected to an identification associated with a specific request.
- URL:
/request/:id/resources/links - Method:
POST
Ensure you include the following headers in your request:
Accept: application/jsonX-Api-Key: YOUR_API_KEY(replaceYOUR_API_KEYwith your actual API key)
id(required): The ID of the request for which you want to retrieve identifications. Example:123e4567-e89b-12d3-a456-426614174000
disposition: INLINE or ATTACHMENTurlValidBefore:
Datetime the URL to retrieve the signed document expires (max 5 days from the request).
Example:2025-04-06T23:59:59.00000ZdownloadArchive: booleanorFilters: with this parameter is possible to filter the set of files included in the final ZIP;
Refer to the YAML (ResourceType, ResourceSubType, and ResourceFamily schemas) for the full filtering parameters
curl --location 'https://dev-eu-ie1-api.namirialonboarding.com/api/v2/request/0ecd58a0-5cb2-4c6f-8fc9-4904b89cf9e1/resources/links' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'X-Api-Key: YOUR_API_KEY' \
--data '{
"disposition": "INLINE",
"urlValidBefore": "2025-04-06T23:59:59.00000Z",
"downloadArchive": true,
"orFilters": [
{"family":"SIGNED_DOCUMENT"},
{"family":"IDENTIFICATION_ASSET"}
]
}'Replace YOUR_API_KEY with your actual API key and YOUR_REQUEST_ID with the ID of the request.