# Get the resources (evidences) of an identification for a request This API call allows you to retrieve the complete resources (evidence) connected to an identification associated with a specific request. ## Endpoint * **URL:** `/request/:id/resources/links` * **Method:** `POST` ## Headers Ensure you include the following headers in your request: * `Accept: application/json` * `X-Api-Key: YOUR_API_KEY` (replace `YOUR_API_KEY` with your actual API key) ## Path parameters * `id` (required): The ID of the request for which you want to retrieve identifications. Example: `123e4567-e89b-12d3-a456-426614174000` ## Body parameters * `disposition`: INLINE or ATTACHMENT * `urlValidBefore`: Datetime the URL to retrieve the signed document expires (max 5 days from the request). Example: `2025-04-06T23:59:59.00000Z` * `downloadArchive`: boolean * `orFilters`: 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 ## Example cURL API call ``` 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. ‌