Search Overlay

Accept Terms and Conditions

POST /accountmanagement/v1/accounts/account_id/termsandconditions

Onboarding merchants must accept Paysafe's Terms and Conditions before they can begin processing transactions.

To accept the Terms and Conditions, you must initiate a POST request to the termsandconditions endpoint.

curl -X POST https://api.test.paysafe.com/accountmanagement/v1/accounts/89987201/termsandconditions \
-u devcentre322:B-qa2-0-53625f86-302c021476f52bdc9deab7aea876bb28762e62f92fc6712d0214736abf501e9675e55940e83ef77f5c304edc7968 \
-H 'Content-Type: application/json' \
-d ' {
"version": "1.0"
}'

Prior

Prior to trying the example above, you should:

  • Replace the account number (89987201) in the URL with the Test account number you received.
  • Replace the API key (after the -u) with the API key you have received

{
"id": "6a275b7c-6f11-4ed1-ae77-21071724574a",
"version": "1.0",
"dateAccepted": "2016-12-14T15:12:18Z"
}

See our API Reference section for a list of all the JSON attributes and types available for the termsandconditions endpoint.

On this Page