Skip to main content
POST
/
transactions
/
refresh
cURL
curl --request POST \
  --url https://development.knotapi.com/transactions/refresh \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "merchant_id": 45,
  "external_user_id": "abc"
}
'
{
  "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.

Authorizations

Authorization
string
header
required

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.

Body

application/json

The input parameters required for refreshing transactions.

merchant_id
integer
required

Unique identifier for the merchant.

Example:

45

external_user_id
string
required

Your unique identifier for the user.

Example:

"abc"

Response

Refresh request accepted.

message
string
Example:

"Success"