---
title: "Get one file delivery"
method: GET
path: "/phones/{phone_id}/deliveries/{delivery_id}"
tags: ["phones"]
---

# Get one file delivery

`GET /phones/{phone_id}/deliveries/{delivery_id}`

Returns a single delivery by id and its current status. Poll this to wait on a specific push: the list endpoint pages the newest records and can drop a delivery that ages past the page on a busy phone.

## Path parameters

- `phone_id` string, required — phone the delivery belongs to
- `delivery_id` string, uuid, required — delivery to fetch

## Response `200`

OK

- FileDeliverySummary — One push of a library file to a phone.
  - `$schema` string, uri — A URL to the JSON Schema for this object.
  - `bytes_transferred` integer — Bytes the phone has downloaded so far. Absent until the phone reports progress.
  - `created_at` string, date-time, required — When the push was dispatched.
  - `error` string — Failure detail for failed deliveries.
  - `file_id` string — Library file that was pushed. Absent once that file has been deleted; the filename and size below are snapshots taken at push time and survive it.
  - `filename` string, required — Delivered file's display name.
  - `id` string, required — Delivery identifier.
  - `mime_type` string, required — Delivered file's MIME type.
  - `phone_id` string, required — Phone the file was pushed to.
  - `size_bytes` integer, required — Delivered file's size in bytes.
  - `status` 'dispatching' | 'dispatched' | 'delivered' | 'failed', required — dispatching while the push is being published, dispatched while the phone downloads, then delivered or failed once it reports back.

## Other responses

- `default` — Error

---

[API](https://skmtc.net/axilioai/apis/axilio-api.md) · [All operations](https://skmtc.net/axilioai/apis/axilio-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/axilioai/axilio-api/revisions/4a74befa0bde/schema)
