Skip to main content
PUT
/
cases
/
{case_id}
/
ein
Set EIN info
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"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

case_id
string
required

Unique case identifier (ULID format).

Body

application/json
has_ein
boolean
Example:

false

ein
string | null

Employer Identification Number in XX-XXXXXXX format.

Example:

"12-3456789"

Response

EIN info set.

data
object