v4

OpenAPI 3.1.02026-08-012402353.8 MB

Create a supplemental document for an Entity

post/entity_supplemental_documents

Request body

entity_idstring required

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

file_idstring required

The identifier of the File containing the document.

Example request

{
  "entity_id": "entity_n8y8tnk2p9339ti393yi",
  "file_id": "file_makxrc67oh9l6sg7w9yc"
}

Response

Supplemental Document

created_atstring date-time required

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

entity_idstring required

The Entity the supplemental document is attached to.

file_idstring required

The File containing the document.

idempotency_keystring nullable required

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'entity_supplemental_document' required

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

Example response

{
  "created_at": "2020-01-31T23:59:59Z",
  "entity_id": "entity_n8y8tnk2p9339ti393yi",
  "file_id": "file_makxrc67oh9l6sg7w9yc",
  "idempotency_key": null,
  "type": "entity_supplemental_document"
}