Skip to main content
POST
/
v3
/
payment
/
sign
Validate or sign DRAFT payment
curl --request POST \
  --url https://api.sandbox.finsei.com/v3/payment/sign \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": [
    "<string>"
  ]
}
'
{
  "status": "ACCEPTED",
  "data": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.finsei.com/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.

Query Parameters

validate
enum<integer>
default:0
  • 1 — validation of signing DRAFT payments (signToken is not used)
  • 0 — signing the DRAFT payment (signToken is required)
Available options:
0,
1
signToken
string

It is used only when 'validate = 0'. When 'validate = 1' is not checked.

Body

application/json
id
string[]
required

Payment uuid (UUID string)

Response

OK or VALIDATE

status
string
Example:

"ACCEPTED"

data
object