Skip to main content
POST
/
customers
/
{id}
/
checkbook
/
signature
Generate and submit signature for Checkbook user
curl --request POST \
  --url https://api.platform.dakota.xyz/customers/{id}/checkbook/signature \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "user_name": "John Doe"
}
'
{
  "code": "invalid_request",
  "message": "The request was invalid. Please check your input and try again.",
  "details": {
    "field": "amount",
    "issue": "must be greater than 0"
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

id
string
required

Customer ID KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

Body

application/json
user_name
string
required

The user's full name to generate signature from

Minimum string length: 1
Example:

"John Doe"

Response

Signature generated and submitted successfully