curl --request PUT \
--url https://api.example.com/v1/cases/{case_id}/ein \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"has_ein": false,
"ein": "12-3456789"
}
'{
"data": {
"has_ein": false,
"ein": "12-3456789"
}
}Create or replace EIN information.
curl --request PUT \
--url https://api.example.com/v1/cases/{case_id}/ein \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"has_ein": false,
"ein": "12-3456789"
}
'{
"data": {
"has_ein": false,
"ein": "12-3456789"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique case identifier (ULID format).
EIN info set.
Show child attributes