Invites and API keys
Create invite
Reference
SDKs
- Overview
- Openlayer SDKs
CLI
- Overview
- CLI global options
- Commands
REST API
- Overview
- Workspaces
- Invites and API keys
- Projects
- Development
- Monitoring
Invites and API keys
Create invite
Invite users to a workspace.
from openlayer import Openlayer
client = Openlayer()
client.workspaces.invites.create(
workspace_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
emails=["john@doe.com", "jane@doe.com"],
role="ADMIN"
)
{
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dateCreated": "2023-11-07T05:31:56Z",
"creator": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"username": "user123",
"name": "Rishab Ramanathan"
},
"status": "accepted",
"workspace": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Openlayer",
"slug": "openlayer",
"dateCreated": "2023-11-07T05:31:56Z",
"memberCount": 1
},
"email": "user@email.com",
"role": "ADMIN"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your workspace API key. See Find your API key for more information.
Path Parameters
The workspace id.
Response
201
application/json
Status OK.
The invite id.
The invite creation date.
The invite status.
Available options:
accepted
, pending
The invite email.
Maximum length:
120
Example:
"user@email.com"
The invite role.
Available options:
ADMIN
, MEMBER
, VIEWER
Was this page helpful?
from openlayer import Openlayer
client = Openlayer()
client.workspaces.invites.create(
workspace_id="182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
emails=["john@doe.com", "jane@doe.com"],
role="ADMIN"
)
{
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"dateCreated": "2023-11-07T05:31:56Z",
"creator": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"username": "user123",
"name": "Rishab Ramanathan"
},
"status": "accepted",
"workspace": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "Openlayer",
"slug": "openlayer",
"dateCreated": "2023-11-07T05:31:56Z",
"memberCount": 1
},
"email": "user@email.com",
"role": "ADMIN"
}
]
}