Skip to main content
POST
/
organizations
/
users
/
{id}
/
actions
/
remove
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});

const action = await client.organizations.users.actions.remove('id');

console.log(action.data);
{
  "data": {
    "id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
    "record_type": "organization_sub_user",
    "email": "user@example.com",
    "user_status": "enabled",
    "organization_user_bypasses_sso": false,
    "created_at": "2018-02-02T22:25:27.521Z",
    "last_sign_in_at": "2018-02-02T22:25:27.521Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Organization User ID

Response

Successful response with details about an Organization User.

data
OrganizationUser · object
Example:
{
"id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
"record_type": "organization_sub_user",
"email": "user@example.com",
"user_status": "enabled",
"organization_user_bypasses_sso": false,
"created_at": "2018-02-02T22:25:27.521Z",
"last_sign_in_at": "2018-02-02T22:25:27.521Z"
}