Skip to main content
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"
    }
  ]
}
Every request sent to Scale’s API requires authentication. In short, your API Key is the Bearer token. See the Authentication section for more details.

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. A unique identifier for the project.

Example:

"project_abc123"

project_name
string

The name of the project.

Example:

"My Scale Project"

delivered_after
string<date-time>

A timestamp formatted as an ISO 8601 date-time string.

delivered_before
string<date-time>

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.

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

Available options:
project

Response

List of deliveries.

deliveries
object[]
required

Array of delivery objects