Create a new group

Creates a new medical group of providers.

Request
Request Body schema: application/json
name
required
string non-empty

The name associated with this group.

npi
integer <int64>

NPI number associated with this group.

taxId
string

Tax ID number associated with this group.

object (AddressModel)
Responses
201

Created

400

Bad Request

401

Unauthorized

403

Forbidden

500

Server Error

post/groups
Request samples
application/json
{
  • "name": "string",
  • "npi": 0,
  • "taxId": "string",
  • "remitAddress": {
    }
}
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "name": "string",
  • "npi": 0,
  • "taxId": "string",
  • "remitAddress": {
    }
}