Try asking a question about Knot to the AI assistant, or install the MCP server or Knot skill to build with AI right from your IDE.
curl --request POST \
--url https://development.knotapi.com/card \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"jwe": "eyJhbGciOiJSU0EtT0FFUC0yNTYiLC...",
"task_id": "123456"
}
'{
"message": "Success"
}Switch a card in a user’s merchant account.
curl --request POST \
--url https://development.knotapi.com/card \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"jwe": "eyJhbGciOiJSU0EtT0FFUC0yNTYiLC...",
"task_id": "123456"
}
'{
"message": "Success"
}Documentation Index
Fetch the complete documentation index at: https://docs.knotapi.com/llms.txt
Use this file to discover all available pages before exploring further.
jwe.Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password. Use your client_id as the username and your secret as the password value.
The input parameters required for switching a card.
JWE value.
"eyJhbGciOiJSU0EtT0FFUC0yNTYiLC..."
task_id value provided in the AUTHENTICATED webhook.
"123456"
Successful request. Receiving this response means your request has passed validations, including the jwe.
Success message.
"Success"
Was this page helpful?
Suggestions