# Index confirmations associated with a Postbox item Returns an array containing all confirmations associated with the Postbox item specified in the request URL. Note that you can filter the results by ( or ) and —see the descriptions below. Endpoint: GET /v1/postbox/items/{item_id}/confirmations Version: 1.0 ## Path parameters: - `item_id` (string, required) ID of the item whose confirmations should be returned. ## Query parameters: - `filter[created_at][min]` (string) Filters the response by Postbox items created a certain date (i.e., the minimum date in the past when the document was created). - `filter[created_at][max]` (string) Filters the response by Postbox items created a certain date (i.e., the maximum date in the past when the document was created). - `page[number]` (integer) The number of pages of results to return. - `page[size]` (integer) The amount of entries to return on a single page. ## Response 200 fields (application/json): - `id` (string) ID of the confirmation. - `person_id` (string) ID of the person who confirmed the Postbox item. - `confirmed_at` (string) UTC timestamp from when the person confirmed the Postbox item. ## Response 400 fields (application/json): - `errors` (array) - `errors.id` (string) - `errors.status` (integer) - `errors.code` (string) - `errors.title` (string) - `errors.detail` (string) - `errors.source` (object) - `errors.source.field` (string) - `errors.source.message` (string) ## Response 403 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "403" - `code` (string) Example: "unauthorized_action" - `title` (string) Example: "Unauthorized Action" - `detail` (string) Example: "Unauthorized action is not allowed." ## Response 404 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "404" - `code` (string) Example: "model_not_found" - `title` (string) Example: "Model Not Found" - `detail` (string) Example: "Couldn't find 'Solaris::Identification' for id 'bbbcccfff388923eb899a5852df6cidt'." ## Response 500 fields (application/json): - `id` (string) Example: "e8915041-9d8c-4d96-9dd1-04e8522ecdbf" - `status` (string) Example: "500" - `code` (string) Example: "generic_error" - `title` (string) Example: "Generic Error" - `detail` (string) Example: "There was an error."