curl --request PATCH \
--url https://api.example.com/v2/auth/accesses/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"otp": "<string>",
"permissions": {
"payIn": true,
"payOut": true,
"convert": true,
"onChain": true,
"viewOnly": true,
"markup": true,
"beneficiary": true,
"enforceAllowedBeneficiaries": false,
"operationRequester": false,
"operationApprover": false
},
"blacklistedSubAccountIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"approverAccessIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"minApprovals": 123
}
'