Skip to main content
GET
/
api
/
v1
/
tokens
/
{token_id}
/
children
List attenuated children
curl --request GET \
  --url https://foundry-api-public.adaptyvbio.com/api/v1/tokens/{token_id}/children \
  --header 'Authorization: Bearer <token>'
[
  {
    "attenuation_spec": "<unknown>",
    "created_at": "2023-11-07T05:31:56Z",
    "id": "<string>",
    "name": "<string>",
    "attenuated_parent_token_id": "<string>",
    "expires_at": "2023-11-07T05:31:56Z",
    "revoked_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Biscuit-based bearer token. Obtain tokens from the Adaptyv Portal or via the /tokens endpoint. Tokens encode organization membership and role-based capabilities; the API verifies the token's cryptographic signature and authorization claims before processing requests. Use /tokens/attenuate to create restricted tokens for delegation.

Path Parameters

token_id
string
required

Root token's token_id (UUID from the Biscuit token_id fact)

Response

List of attenuated children

attenuation_spec
any
required

Restrictions applied to this token.

created_at
string<date-time>
required

When this attenuated token was created.

id
string
required

Database ID of this attenuated token record.

name
string
required

Human-readable label.

attenuated_parent_token_id
string | null

ID of the parent attenuated token (NULL if direct child of root).

expires_at
string<date-time> | null

Expiration of this attenuated token (may differ from parent).

revoked_at
string<date-time> | null

When this token was revoked (NULL if active).