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"
}
}Documentation Index
Fetch the complete documentation index at: https://developer.fin.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token authentication. Obtain token from Issue a Token endpoint
Beneficiary updated successfully
Show child attributes