Skip to main content
GET
/
v2
/
tos-link
/
{signedAgreementId}
Retrieve a terms of service link
curl --request GET \
  --url https://production.hifibridge.com/v2/tos-link/{signedAgreementId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "e6e0de1d-7d0b-4935-ba1a-71906064067e",
  "createdAt": "2025-04-17T18:27:51.169Z",
  "expiredAt": "2025-04-22T18:27:51.091Z",
  "signed": true,
  "sessionToken": "e3a92e74-19e0-4137-ab75-ae537832f342"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

signedAgreementId
string
required

ID of the signed agreement

Response

Success

id
string<uuid>

signed agreement id

createdAt
string<date-time>

Timestamp when the ToS link was created

expiredAt
string<date-time>

Timestamp when the ToS link will expire

signed
boolean

Whether the ToS has been signed

sessionToken
string<string>

Session token for the ToS signing session

I