Skip to main content
GET
/
cases
/
{case_id}
/
ein
Get EIN info
curl --request GET \
  --url https://api.example.com/v1/cases/{case_id}/ein \
  --header 'Authorization: Bearer <token>'
{
  "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).

Response

EIN details.

data
object