Skip to main content
GET
/
customers
/
{id}
/
signings
Get all customer Signings
curl --request GET \
  --url https://api.sandbox.iron.xyz/api/customers/{id}/signings \
  --header 'X-API-Key: <api-key>' \
  --header 'X-SUB-PARTNER-ID: <x-sub-partner-id>'
{
  "items": [
    {
      "content_type": "Document",
      "created_at": "2023-11-07T05:31:56Z",
      "customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "updated_at": "2023-11-07T05:31:56Z",
      "content_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "document_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "cursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "prev_cursor": null
}

Authorizations

X-API-Key
string
header
required

API Key

Headers

X-SUB-PARTNER-ID
string
required

Optional sub-partner UUID, if provided, the signings will be filtered for the sub-partner

Path Parameters

id
string<uuid>
required

the ID of the Customer to get Signings for

Query Parameters

cursor
string<uuid>

Paging: the cursor field from previous page

page_size
integer<uint32>
default:10

Paging: the requested page size (max 100)

Response

GET Signings Succeeded

PagedList

A list of items with cursors used to fetch the next or previous page

items
Signing · object[]
required

The list of items

cursor
string<uuid>

The cursor used to fetch the next page

prev_cursor
string<uuid>

The cursor used to fetch the previous page