# Retrieve resources from a request as a ZIP archive This API call allows you to retrieve resources from a request as a ZIP archive ## Endpoint * **URL:** `/request/{id}/resources/archive` * **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 unique identifier of the request for which you want to retrieve the identification. This should be included in the URL path. Example: `123e4567-e89b-12d3-a456-426614174000` ## Example cURL API call ``` curl --location 'https://test-eu-ie1-api.namirialonboarding.com/api/v2/request/YOUR_REQUEST_ID/resources/archive' \ --header 'content-type: application/json' \ --header 'X-Api-Service: YOUR_API_KEY' \ --data '{ "disposition": "INLINE", "orFilters": [ ] }' ``` Replace `YOUR_API_KEY` with your actual API key, `YOUR_REQUEST_ID` with the ID of the request. ## Responses * **200 OK** * **Description:** The resources from a request * **Example Response:** ![Image placeholder - Response example screenshot] ‌