Adds a form to a transaction.
Request Fields:
| Field | Type | Description |
|---|---|---|
| formLib | string | Form-library identifier of the form to add |
POST
/v2/transactions/{transactionId}/forms
curl \
--request POST 'https://api.pre.transactiondesk.com/v2/transactions/{transactionId}/forms' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"formLib":"ABC123"}'
Request examples
{
"formLib": "ABC123"
}
Response examples (200)
7f0f7fc1-8a2f-4e3d-b23f-3b6d2f1f9a11
Response examples (401)
{
"code": 401,
"message": "Unauthorized. The user is not authenticated.",
"details": []
}