cURL
curl --request PATCH \ --url https://sandbox.api.fin.com/v1/beneficiaries \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "beneficiary_id": "f653e109-6c62-4aa4-869c-418c874e0a6c", "active": true } '
{ "data": { "message": "Beneficiary updated successfully" } }
Update the active status of a beneficiary to enable or disable it
Bearer token authentication. Obtain token from /v1/oauth/token endpoint
Unique identifier for the beneficiary
"f653e109-6c62-4aa4-869c-418c874e0a6c"
Set to true to activate or false to deactivate the beneficiary
true
Beneficiary updated successfully
Show child attributes