Patch an existing group

Allows you to change a group's name or other data properties.

Request
path Parameters
groupId
required
string <uuid>
Request Body schema: application/json
name
string

If set, the group's name will be updated with this value.

npi
integer <int64>

If set, the group's npi will be updated with this value.

taxId
string

If set, the group's taxId will be updated with this value.

object (AddressModel)
Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Server Error

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