TeamGriddeveloper
TeamGrid Developer

productGroups SDK client

5 typed @teamgrid/api-client methods for Product Groups, plus 1 convenience helper.

Client propertyclient.productGroups
Mapped operations5
API groupsProduct Groups

Operation methods

Parameter declarations below are taken from the pinned TypeScript source. Request fields and responses are summarized from the matching OpenAPI operation; follow the API link for every field, constraint, example, and error description.

GET/product-groups
Full API operation →

productGroups.list

Use this operation to list product groups. It returns only resources visible to the credential and applies the documented filters before producing a bounded, stable page. Required scopes, product permissions, sharing rules, workspace locks, and regional cell ownership are enforced for every request.

client.productGroups.list(options?: ProductGroupListOptions)
Return form
Promise
Operation ID
listProductGroups
Required scopes
product-groups:read
SDK parameters
options: ProductGroupListOptions
Query request fields
cursor?: stringlimit?: integerarchived?: booleanparentId?: string
Success
200 Array<ProductGroup> envelope
Declared API errors
400401403429503
POST/product-groups
Full API operation →

productGroups.create

Use this operation to create a product group. The server validates the complete payload and derives workspace ownership from the authenticated credential. Required scopes, product permissions, sharing rules, workspace locks, and regional cell ownership are enforced for every request. Use a stable Idempotency-Key when retrying so a transport timeout cannot create duplicate work.

client.productGroups.create(data: ProductGroupCreate, options?: MutationOptions)
Return form
Promise
Operation ID
createProductGroup
Required scopes
product-groups:write
SDK parameters
data: ProductGroupCreateoptions: MutationOptions
Header request fields
Idempotency-Key: string
Request body
ProductGroupCreateapplication/json
Success
200 ProductGroup envelope201 ProductGroup envelope
Declared API errors
400401403409429502503
GET/product-groups/{id}
Full API operation →

productGroups.get

Use this operation to get a product group. It returns the resource only when it belongs to the authenticated workspace and is visible to the credential. Required scopes, product permissions, sharing rules, workspace locks, and regional cell ownership are enforced for every request.

client.productGroups.get(id: string, options?: RequestOptions)
Return form
Promise
Operation ID
getProductGroup
Required scopes
product-groups:read
SDK parameters
id: stringoptions: RequestOptions
Path request fields
id: string
Success
200 ProductGroup envelope
Declared API errors
400401403404429503
PATCH/product-groups/{id}
Full API operation →

productGroups.update

Use this operation to update a product group. Only documented mutable fields are accepted; omitted fields retain their current values unless the request schema states replacement semantics. Required scopes, product permissions, sharing rules, workspace locks, and regional cell ownership are enforced for every request.

client.productGroups.update(id: string, data: ProductGroupUpdate, options?: RequestOptions)
Return form
Promise
Operation ID
updateProductGroup
Required scopes
product-groups:write
SDK parameters
id: stringdata: ProductGroupUpdateoptions: RequestOptions
Path request fields
id: string
Request body
ProductGroupUpdateapplication/json
Success
200 ProductGroup envelope
Declared API errors
400401403404409429502503
DELETE/product-groups/{id}
Full API operation →

productGroups.archive

Use this operation to archive a product group. The operation preserves TeamGrid lifecycle and permission rules instead of bypassing them with a direct data deletion. Required scopes, product permissions, sharing rules, workspace locks, and regional cell ownership are enforced for every request.

client.productGroups.archive(id: string, options?: RequestOptions)
Return form
Promise
Operation ID
archiveProductGroup
Required scopes
product-groups:write
SDK parameters
id: stringoptions: RequestOptions
Path request fields
id: string
Success
204
Declared API errors
400401403404409429502503

Convenience helpers

These typed helpers compose mapped operations. They do not grant scopes or bypass API limits.

productGroups.pages

Iterate cursor pages with a bounded PaginationOptions policy.

client.productGroups.pages(options?: ProductGroupListOptions, pagination?: PaginationOptions)
Returns AsyncGenerator

Errors and transport metadata

HTTP failures reject with TeamGridApiError, including the status, stable error documents, request ID, optional retry delay, and transport metadata. Local validation, routing, timeout, response-size, and pagination failures reject withTeamGridClientError and a stable client error code. Successful envelopes expose non-enumerable transport metadata.

See pagination and errors andclient configuration for handling guidance.

Stable documentation · Developer Platform · Reviewed 2026-08-10Edit this page ↗
Documentation feedbackWas this page useful?
Esc

Search TeamGrid Developer

Find guides, concepts and every API operation.