Users V2

View users.

Users all have a single base role, and can be assigned multiple custom roles. They can be managed via your Slack workspace or SAML provider.

List Users V2

List users for an organisation.

Request
query Parameters
email
string

Filter by email address

Example: email=john.doe@incident.io
slack_user_id
string

Filter by Slack user ID

Example: slack_user_id=U12345678
page_size
integer <int64> <= 500
Default: 25

Integer number of records to return

Example: page_size=25
after
string

An record's ID. This endpoint will return a list of records after this ID in relation to the API response order.

Example: after=01FDAG4SAP5TYPT98WGR2N7W91
Responses
200

OK response.

get/v2/users
Request samples
Response samples
application/json
{
  • "pagination_meta": {
    },
  • "users": [
    ]
}

Show Users V2

Get a single user.

Request
path Parameters
id
required
string

Unique identifier of the user

Example: 01FCNDV6P870EA6S7TK1DSYDG0
Responses
200

OK response.

get/v2/users/{id}
Request samples
Response samples
application/json
{
  • "user": {
    }
}