Skip to main content
API Reference
Cards
Supplemental Documents

Supplemental Documents are uploaded files connected to an Entity during onboarding.

The Supplemental Document object
{
  "created_at": "2020-01-31T23:59:59Z",
  "entity_id": "entity_n8y8tnk2p9339ti393yi",
  "file_id": "file_makxrc67oh9l6sg7w9yc",
  "idempotency_key": null,
  "type": "entity_supplemental_document"
}
Attributes
created_at
string

The ISO 8601 time at which the Supplemental Document was created.

entity_id
string

The Entity the supplemental document is attached to.

More about Entities.
file_id
string

The File containing the document.

More about Files.
idempotency_key
string
Nullable

The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.

type
string

A constant representing the object’s type. For this resource it will always be entity_supplemental_document.

List Entity Supplemental Document Submissions
curl \
  --url "${INCREASE_URL}/entity_supplemental_documents?entity_id=entity_n8y8tnk2p9339ti393yi" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
Returns a list response :
{
  "data": [
    { /* Supplemental Document object */ },
    { /* Supplemental Document object */ }
    /* ... */
  ],
  "next_cursor": "v57w5d",
}
Parameters
entity_id
string
Required

The identifier of the Entity to list supplemental documents for.

More about Entities.
idempotency_key
string

Filter records to the one with the specified idempotency_key you chose for that object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.

Between 1 and 200 characters
More
cursor
string
limit
integer
Create a supplemental document for an Entity
curl -X "POST" \
  --url "${INCREASE_URL}/entity_supplemental_documents" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}" \
  -H "Content-Type: application/json" \
  -d $'{
    "entity_id": "entity_n8y8tnk2p9339ti393yi",
    "file_id": "file_makxrc67oh9l6sg7w9yc"
  }'
Parameters
entity_id
string
Required

The identifier of the Entity to associate with the supplemental document.

More about Entities.
file_id
string
Required

The identifier of the File containing the document.

More about Files.