GET
/
v2
/
deliveries
curl --request GET \
  --url https://api.scale.com/v2/deliveries \
  --header 'Authorization: Bearer <token>'
{
  "deliveries": [
    {
      "id": "delivery_abc123",
      "name": "My Scale Delivery",
      "task_count": 1000,
      "delivered_at": "2023-11-07T05:31:56Z",
      "project": "project_abc123"
    }
  ]
}

Required query parameters

You are expected to provide one of the following to find deliveries:

  • project_id - The ID of the Scale project.
  • project_name - The name of the Scale project.

Authorizations

Authorization
string
header
required

Your API Key is the Bearer token. See the Authentication section to learn how to access your key.

Query Parameters

project_id
string

Scale's unique identifier for the project.

project_name
string

The name of the project.

delivered_after
string

Deliveries with a delivered_at after the given date will be returned. A timestamp formatted as an ISO 8601 date-time string.

delivered_before
string

Deliveries with a delivered_at before the given date will be returned. A timestamp formatted as an ISO 8601 date-time string.

expand
enum<string>[]

List of fields to expand in the response.

Entities that can be expanded from an ID to an object.

Available options:
project

Response

200
application/json
List of deliveries.
deliveries
object[]
required

Array of delivery objects