Skip to main content
PUT
/
api
/
v1
/
groups
/
{group_id}
/
{version}
Edit an existing Group
curl --request PUT \
  --url https://fulfillment.noyo.com/api/v1/groups/{group_id}/{version} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "dba_name": "Floors R Us",
  "federal_ein": "112222222",
  "name": "ACME Flooring",
  "sic_code": "5713"
}
'
{
  "created": 123,
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "modified": 123,
  "name": "ACME Flooring",
  "version": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "dba_name": "Floors R Us",
  "federal_ein": "112222222",
  "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "sic_code": "5713"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

group_id
string<uuid>
required

The unique identifier of the group to be edited

Example:

"2613a221-d3c8-4c8a-86d5-e7e885fd1da9"

version
string<uuid>
required

Unique version of the group you want to edit

Example:

"6b72d72d-cc99-4df6-8152-7183e824c80c"

Body

application/json
dba_name
string

DBA name for the company, if applicable

Example:

"Floors R Us"

federal_ein
string

Federal Employer Identification Number for the company

Example:

"112222222"

name
string

Name of the group

Example:

"ACME Flooring"

sic_code
string

SIC Code of the group

Example:

"5713"

Response

200 - application/json

Successful Response - Returns the modified Group

created
integer
required

The date the record was created

id
string<uuid>
required

Unique identifier of the record in Noyo

modified
integer
required

The date the record was last updated

name
string
required

Name of the group

Example:

"ACME Flooring"

version
string<uuid>
required

Current version of the record

dba_name
string

DBA name for the company, if applicable

Example:

"Floors R Us"

federal_ein
string

Federal Employer Identification Number for the company

Example:

"112222222"

organization_id
string<uuid>

Unique identifier of the platform or broker organization in Noyo

sic_code
string

SIC Code of the group

Example:

"5713"