Retrieve a legal term acceptance

GET/legal-terms/{legal_term_id}/acceptances/{term_acceptance_id}

Retrieves an acceptance of a legal term by its public ID. This is the canonical location of every acceptance, including those returned in a user's acceptance history.

The proof object, containing the IP address and user agent recorded at acceptance, is included only when the credentials have the legal_terms.read_proof permission. Otherwise, it is omitted from the response.

AuthorizationBearer <token>

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

In: header

Path Parameters

legal_term_id*string
term_acceptance_id*string

Header Parameters

X-Client-Request-Id?string

Optional client-generated identifier of the request, up to 64 characters from [A-Za-z0-9._-]. Echoed back in the response and recorded in the request log; it never replaces the server-generated X-Request-Id.

Lengthlength <= 64

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/legal-terms/string/acceptances/string"
{  "data": {    "accepted_at": "2019-08-24T14:15:22Z",    "id": "string",    "legal_term_id": "string",    "links": {      "self": "string"    },    "object": "term_acceptance",    "proof": {      "ip": "string",      "user_agent": "string"    },    "user_id": "string"  }}