Skip to main content
GET
/
api
/
v1
/
teams
/
{team_id}
/
products
/
{product_id}
/
deliverables
Admin List Deliverables
curl --request GET \
  --url https://api.member.dev/api/v1/teams/{team_id}/products/{product_id}/deliverables/ \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "attributes": {
        "created_at": "2023-11-07T05:31:56Z",
        "deliverable_type": "<string>",
        "duration_days": 123,
        "position": 123,
        "product_id": "<string>",
        "resource_id": "<string>",
        "resource_meta": {},
        "updated_at": "2023-11-07T05:31:56Z"
      },
      "id": "<string>",
      "type": "product_deliverables"
    }
  ],
  "meta": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

team_id
string
required
product_id
string
required

Response

Successful Response

data
DeliverableResource · object[]
required
meta
Meta · object
required