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
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"
}
}Bearer token authentication. Obtain token from /v1/oauth/token endpoint
Beneficiary updated successfully
Show child attributes