Add User to Account

This shows how you can add new user to quabbly account with their credentials..

Add User

Endpoint

api.quabbly.live/v1/api

Header

x-api-key : "API Key"

Arguments

Field NameValueType
addUserDTOAddUserDTOObject

Sample Payload

mutation user ($addUserDTO: AddUserDTO) {
    user (addUserDTO: {firstname: "sophia", lastname:"okito", email:"[email protected]"}) {
        id
        uuid
        firstname
        lastname
        email
    }
}

Sample Response

{
  "id" : "61f1764a79be500a4a6f3eab".
  "uuid": "a0dab648-d9bd-42cd-8275-8ba2bad54e29",
  "firstname": "sophia",
  "lastname":"okito"
}