Skip to main content
GET
/
v1
/
contracts
List
curl --request GET \
  --url https://api.cadanapay.com/v1/contracts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "8ef9a712-cdae-4110-b1ea-9ba95abbee6e",
      "templateId": "8ef9a712-cdae-4110-b1ea-9ba95abbee6e",
      "status": "completed",
      "personId": "8ef9a712-cdae-4110-b1ea-9ba95abbee6e",
      "name": "Edward Petersen - Standard Global Contractor Agreement",
      "signatures": [
        {
          "id": "8ef9a712-cdae-4110-b1ea-9ba95abbee6e",
          "emailAddress": "signer@example.com",
          "name": "John Doe",
          "order": 0,
          "status": "signed",
          "signedAt": 1689759850,
          "lastViewedAt": 1689759850
        }
      ],
      "createdAt": 1689759850,
      "customContractAttached": false
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

X-MultiTenantKey
string

Required when using a Platform API token. The tenant key identifying which business to operate on.

Query Parameters

personId
string<uuid>

Optional UUID of the person to filter the contracts

Response

get contracts response

data
object[]