Skip to main content

Create a batch of users

POST 

/users/batch

Creates a new user in your Embedded account. The user record acts like a "container" to store all the integrations, workflows, and credentials for any given user. Returns a user identifier.

Request

Header Parameters

    Authorization stringrequired

    Default value: bearer YOUR_API_KEY

    Your Embedded API key for authorization

Body

    users json

    Default value: [{ username: 'user123', fullName: 'Joe Smoe' }, { username: 'user456' }, { username: 'janedoe', fullName: 'Jane Doe' }]

    An array of username and fullName to be created. Note that username is mandatory but fullName is optional. Limited to 1000 users at a time.

Responses

200

Schema

    message string

    invalidUsers

    object[]

  • Array [

  • fullName string
  • ]

Loading...