{ "opencollection": "1.0.0", "info": { "name": "OpenAI Assistants Invites API", "version": "2.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Invites", "type": "folder" }, "items": [ { "info": { "name": "Returns a list of invites in the organization.", "type": "http" }, "http": { "method": "GET", "url": "https://api.openai.com/v1/organization/invites", "params": [ { "name": "limit", "value": "", "type": "query", "description": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.\n" }, { "name": "after", "value": "", "type": "query", "description": "A cursor for use in pagination. `after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with obj_foo, your subsequent call can include after=obj_foo in order to fetch the next page of the list.\n" } ] }, "docs": "Returns a list of invites in the organization." }, { "info": { "name": "Create an invite for a user to the organization. The invite must be accepted by the user before they have access to the organization.", "type": "http" }, "http": { "method": "POST", "url": "https://api.openai.com/v1/organization/invites", "body": { "type": "json", "data": "{}" } }, "docs": "Create an invite for a user to the organization. The invite must be accepted by the user before they have access to the organization." }, { "info": { "name": "Retrieves an invite.", "type": "http" }, "http": { "method": "GET", "url": "https://api.openai.com/v1/organization/invites/:invite_id", "params": [ { "name": "invite_id", "value": "", "type": "path", "description": "The ID of the invite to retrieve." } ] }, "docs": "Retrieves an invite." }, { "info": { "name": "Delete an invite. If the invite has already been accepted, it cannot be deleted.", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.openai.com/v1/organization/invites/:invite_id", "params": [ { "name": "invite_id", "value": "", "type": "path", "description": "The ID of the invite to delete." } ] }, "docs": "Delete an invite. If the invite has already been accepted, it cannot be deleted." } ] } ], "bundled": true }