Skip to main content
POST
/
applications
/
{application_id}
/
attestations
Submit an attestation for an application
curl --request POST \
  --url https://api.platform.dakota.xyz/applications/{application_id}/attestations \
  --header 'Content-Type: application/json' \
  --header 'X-Application-Token: <api-key>' \
  --header 'x-idempotency-key: <x-idempotency-key>' \
  --data '
{
  "attestation_type": "information_accuracy",
  "timestamp": 1705315800,
  "applicant_id": "2hCjxJzUAW6JVRkZqaF9E0KpM3b"
}
'

Authorizations

X-Application-Token
string
header
required

Application-specific token for public URL access. Generated when a customer is created. Provides access to a single application without requiring an API key. Token is valid for 30 days and rate-limited to 100 requests per hour.

Headers

x-idempotency-key
string<uuid>
required

Unique key to ensure request idempotency. If the same key is used within a certain time window, the original response will be returned instead of executing the request again.

Path Parameters

application_id
string
required

The unique identifier for the application 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

Attestation submission data

Request to submit an attestation for a KYB application

attestation_type
enum<string>
required

Type of attestation being submitted

Available options:
information_accuracy,
terms_of_service,
privacy_policy,
funds_transfer_agreement,
lead_bank_privacy_policy,
e_sign
Example:

"information_accuracy"

timestamp
integer<int64>
required

Unix epoch timestamp (in seconds) when the attestation was made

Example:

1705315800

applicant_id
string<ksuid>
required

ID of the individual applicant making the attestation

Example:

"2hCjxJzUAW6JVRkZqaF9E0KpM3b"

Response

Attestation submitted successfully