curl --request PATCH \
--url https://api.example.com/v1/cases/{case_id}/bank-accounts/{account_id}/signers/{signer_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"role": "primary_holder",
"is_deceased": true,
"date_added": "2023-12-25",
"date_removed": "2023-12-25"
}
'{
"data": {
"id": "01K6SG02BJ0T77HRYE78AN7STU",
"name": "John Jonas Johnson",
"role": "primary_holder",
"is_deceased": true,
"date_added": "2023-12-25",
"date_removed": "2023-12-25"
}
}Update signer information.
curl --request PATCH \
--url https://api.example.com/v1/cases/{case_id}/bank-accounts/{account_id}/signers/{signer_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"role": "primary_holder",
"is_deceased": true,
"date_added": "2023-12-25",
"date_removed": "2023-12-25"
}
'{
"data": {
"id": "01K6SG02BJ0T77HRYE78AN7STU",
"name": "John Jonas Johnson",
"role": "primary_holder",
"is_deceased": true,
"date_added": "2023-12-25",
"date_removed": "2023-12-25"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique case identifier (ULID format).
Signer updated.
Show child attributes