TAA
Endpoints for managing the Transaction Author Agreement (TAA)
This endpoint fetches the Transaction Author Agreement (TAA) using the provided API key.
Authorizations
Responses
200
TAA fetched successfully
application/json
401
Unauthorized.
500
Internal Server Error
application/json
post
POST /api/v1/fetch-taa HTTP/1.1
Host:
x-api-key: YOUR_API_KEY
Accept: */*
{
"taa": {}
}
This endpoint accepts the Transaction Author Agreement (TAA) using the provided API key and TAA data.
Authorizations
Body
mechanismstringRequired
Mechanism for accepting TAA.
textstringOptional
The Transaction Author Agreement
versionstringOptional
Version of the TAA
Responses
200
TAA accepted successfully
application/json
401
Unauthorized.
500
Internal Server Error
application/json
post
POST /api/v1/accept-taa HTTP/1.1
Host:
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 89
{
"mechanism": "on_file",
"text": "Indicio Transaction Author Agreement....",
"version": "1.3"
}
{
"taa": {}
}
Was this helpful?