The Dispute Document object

The DisputeDocument object represents a file you upload as evidence for a dispute. Fintoc returns it in the response when you upload a document and in the documents array of the Dispute object.

AttributeTypeDescription
idstringUnique identifier of the dispute document. Prefixed with cbd_.
objectstringType of the object. Always dispute_document.
content_typestring | nullMedia type of the uploaded file, for example application/pdf. null when Fintoc cannot determine the type.
created_atstringISO 8601 datetime in UTC when the document was uploaded.
dispute_idstringIdentifier of the dispute this document belongs to.
filenamestringName of the uploaded file.
sizeintegerSize of the uploaded file in bytes.
{
  "id": "cbd_8anBm9YpVwXzKqL2",
  "object": "dispute_document",
  "content_type": "application/pdf",
  "created_at": "2024-01-16T17:04:10.284Z",
  "dispute_id": "cb_8anBm9YpVwXzKqL2",
  "filename": "evidence.pdf",
  "size": 102400
}