User Management

Add Users and Get Unique ID

Add User

POST https://iam.demo.medeintegra.dev/users/add

Request Body

Name
Type
Description

appUserInfo

object

Basic Information of the User

appUserId

string

Unique ID for the user as Identified by your system

{
    name: string;

    firstName: string;
    lastName: string;
    mobileNumber: string;
    zipcode: string;
    city: string;

    dobInEpoch?: number;
    gender?: string;
}

Last updated

Was this helpful?