Create new room
Use this API to create a new room in your organisation. Use fields externalRef
to refer to your internal records such as Salesforce object type and its unique ID. Users in invitees
will be given access to the room.
- application/json
Request Body
- name string required
- externalRef string
- slug string required
- ownerUserEmail string required
invitees object[]
firstName string requiredlastName string requiredemail email requiredaccess string required- notes string
Responses
- 201
- default
Created
- application/json
- Schema
- Example (from schema)
Schema
- name string
- externalRef string
- slug string
- ownerUserEmail string
- createdAt date-time
- updatedAt date-time
- archivedAt date-time
- id cuid
{
"name": "string",
"externalRef": "string",
"slug": "string",
"ownerUserEmail": "string",
"createdAt": "2023-04-13",
"updatedAt": "2023-04-13",
"archivedAt": "2023-04-13",
"id": "string"
}
Unexpected error
- application/json
- Schema
- Example (from schema)
Schema
- code string
- message string
{
"code": "string",
"message": "string"
}
Loading...