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"
}TransactionLink
Refresh Transactions
Initiate an on-demand refresh of transaction data for a user’s merchant account.
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"
}Authorizations
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.
Response
Refresh request accepted.
Example:
"Success"
Was this page helpful?
⌘I