Retrieve an entity
Retrieves the details of an existing entity. You need only supply the unique entity ID that was returned upon entity creation.
Path parameters
-
The ID of the desired entity (e.g.,
en_Ah3tqYn
).
GET /api/v1/entities/{entity_id}
curl \
-X GET https://api.1099policy.com/api/v1/entities/{entity_id}
Response examples (200)
{
"address": {
"country": "null",
"line1": "92 Geary St",
"line2": "null",
"locality": "San Francisco",
"postalcode": 94114,
"region": "CA"
},
"coverage_limit": {
"aggregate_limit": 200000000,
"occurrence_limit": 100000000
},
"created": 1646818364,
"id": "en_Ah3tqYn",
"name": "Apple, Inc",
"required_coverage": [
"general",
"workers-comp"
]
}