Skip to content
Pile
Esc
navigateopen⌘Jpreview

Create linear user

POST/workspaces/{organizationId}/linear-users
Path parameters
organizationIdstringrequired
Request body
application/json
linearIdstringrequired
min length 1
namestring
emailstring
Responses
201Linear user created
idstringrequired
organizationIdstringrequired
linearIdstringrequired
namestring | nullrequired
emailstring | nullrequired
createdAtstringrequired
Try it
Server
Parameters
Bodyapplication/json
Request
curl -X POST "/workspaces/string/linear-users" \
  -H "Content-Type: application/json" \
  -d '{
  "linearId": "string",
  "name": "string",
  "email": "string"
}'
Response
{
  "id": "string",
  "organizationId": "string",
  "linearId": "string",
  "name": "string",
  "email": "string",
  "createdAt": "string"
}