Body
-
address object
-
coverage_limit object
-
The contracting entity's legal name.
-
required_coverage object
POST /api/v1/entities
curl \
-X POST https://api.1099policy.com/api/v1/entities \
-H "Content-Type: application/json" \
-d '{"name":"Apple, Inc","address":{"line1":"One Apple Park Way","region":"CA","locality":"Cupertino","postalcode":95014},"coverage_limit":{"aggregate_limit":200000000,"occurrence_limit":100000000},"required_coverage":["general","workers-comp"]}'
Request example
{
"name": "Apple, Inc",
"address": {
"line1": "One Apple Park Way",
"region": "CA",
"locality": "Cupertino",
"postalcode": 95014
},
"coverage_limit": {
"aggregate_limit": 200000000,
"occurrence_limit": 100000000
},
"required_coverage": [
"general",
"workers-comp"
]
}
Response examples (201)
{
"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"
]
}