Skip to main content
POST
/
documents
Create document
curl --request POST \
  --url https://api.finpace.tech/documents \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "documentId": "doc_01J8YF6H",
  "category": "financial_statement",
  "source": "manual_upload",
  "status": "active"
}
'
{
  "documentId": "doc_01J8YF6H",
  "category": "financial_statement",
  "source": "manual_upload",
  "status": "active"
}

Documentation Index

Fetch the complete documentation index at: https://docs.finpace.tech/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Body

application/json
documentId
string
required
Example:

"doc_01J8YF6H"

category
string
required
Example:

"financial_statement"

source
string
required
Example:

"manual_upload"

status
string
required
Example:

"active"

Response

200 - application/json

OK

documentId
string
required
Example:

"doc_01J8YF6H"

category
string
required
Example:

"financial_statement"

source
string
required
Example:

"manual_upload"

status
string
required
Example:

"active"