Groups
- POSTCreate Group
- PUTEdit Group
- GETGet Group
- GETList Groups
- Configurations
- Connections
- Contacts
- Disconnections
- Enrollments
- Locations
- Plans
- Renewals
- Syncs
Members
- Employees
- Dependents
- Enrollments
- Premiums
Changes
- Snapshots
- Tracking
Legacy
- Requests
- Transactions
Create Group
Create a new group
POST
/
api
/
v1
/
groups
curl --request POST \
--url https://fulfillment.noyo.com/api/v1/groups \
--header 'Content-Type: application/json' \
--data '{
"dba_name": "Floors R Us",
"federal_ein": "112222222",
"name": "ACME Flooring",
"sic_code": "5713"
}'
{
"created": 1557512389,
"dba_name": "Test Corp",
"federal_ein": "112222222",
"id": "2613a221-d3c8-4c8a-86d5-e7e885fd1da9",
"modified": 1557512389,
"name": "Test Company",
"organization_id": "d61fa455-adf4-4dc4-8c57-6d779ba9475e",
"sic_code": "7371",
"version": "6b72d72d-cc99-4df6-8152-7183e824c80c"
}
Body
application/json
Response
201 - application/json
Successful Response - Returns the new Group
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://fulfillment.noyo.com/api/v1/groups \
--header 'Content-Type: application/json' \
--data '{
"dba_name": "Floors R Us",
"federal_ein": "112222222",
"name": "ACME Flooring",
"sic_code": "5713"
}'
{
"created": 1557512389,
"dba_name": "Test Corp",
"federal_ein": "112222222",
"id": "2613a221-d3c8-4c8a-86d5-e7e885fd1da9",
"modified": 1557512389,
"name": "Test Company",
"organization_id": "d61fa455-adf4-4dc4-8c57-6d779ba9475e",
"sic_code": "7371",
"version": "6b72d72d-cc99-4df6-8152-7183e824c80c"
}