List legal terms

GET/legal-terms

Lists the configured legal terms: at most one for the platform and one per product. The collection can be filtered by scope and product.

The term body is not included in the collection; use the retrieve operation to obtain it. When the credentials are restricted to specific legal terms, only those terms are returned.

Returns all matching legal terms in a single response while preserving the standard collection response format.

AuthorizationBearer <token>

Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.

In: header

Query Parameters

scope?string

Value in

  • "platform"
  • "product"
product_id?string

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/legal-terms"
{  "data": [    {      "acceptances_count": 0,      "body": {        "blocks": [          {}        ]      },      "id": "string",      "object": "legal_term",      "product_id": "string",      "revision": "string",      "scope": "platform",      "title": "string",      "updated_at": "2019-08-24T14:15:22Z"    }  ],  "page": {    "limit": 1,    "next_cursor": "string",    "prev_cursor": "string"  }}