{ "opencollection": "1.0.0", "info": { "name": "OpenAI Assistants Groups API", "version": "2.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Groups", "type": "folder" }, "items": [ { "info": { "name": "Lists all groups in the organization.", "type": "http" }, "http": { "method": "GET", "url": "https://api.openai.com/v1/organization/groups", "params": [ { "name": "limit", "value": "", "type": "query", "description": "A limit on the number of groups to be returned. Limit can range between 0 and 1000, and the default is 100.\n" }, { "name": "after", "value": "", "type": "query", "description": "A cursor for use in pagination. `after` is a group ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with group_abc, your subsequent call can include `after=group_abc` in order to fetch the next page of the list.\n" }, { "name": "order", "value": "", "type": "query", "description": "Specifies the sort order of the returned groups." } ] }, "docs": "Lists all groups in the organization." }, { "info": { "name": "Creates a new group in the organization.", "type": "http" }, "http": { "method": "POST", "url": "https://api.openai.com/v1/organization/groups", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new group in the organization." }, { "info": { "name": "Updates a group's information.", "type": "http" }, "http": { "method": "POST", "url": "https://api.openai.com/v1/organization/groups/:group_id", "params": [ { "name": "group_id", "value": "", "type": "path", "description": "The ID of the group to update." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a group's information." }, { "info": { "name": "Deletes a group from the organization.", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.openai.com/v1/organization/groups/:group_id", "params": [ { "name": "group_id", "value": "", "type": "path", "description": "The ID of the group to delete." } ] }, "docs": "Deletes a group from the organization." } ] } ], "bundled": true }