Basic User Profile

GetBasicUserProfiles

GET {{domain}}/api/v1/profile/basic/user

Gets the list of basic user profiles

Query Parameters

Name
Type
Description

keyword

string

Keyword for searching

pageSize

integer

Page size for pagination. Default value is set to 10

pageNumber

integer

Page number for pagination. Default value is set to 1

{
  "message": "200",
  "data": [
    {
      "sSoUSerId": "19fc484c-ea2b-4f67-aca6-0d85e4bd99a8",
      "address": "Ketu",
      "gender": "MALE",
      "dateOfBirth": "01/12/1992 00:00:00",
      "country": "Nigeria",
      "state": "Lagos",
      "organisationName": "Techmuncher Limited",
      "extendedProfile": null,
      "total": 5
    }
  ]
}

GetBasicUserProfileById

GET {{domain}}/api/v1/profile/basic/user

Gets a single basic user profile by Id

Query Parameters

Name
Type
Description

Id

string

User Id

CreateBasicUserProfile

POST {{domain}}/api/v1/profile/basic/user

Creates a basic user profile Gender description 0 = Female, 1 = Male

Request Body

Name
Type
Description

object

{ "sSoUSerId": "string", "address": "string", "gender": 0, "dateOfBirth": date, "country" : "string", "state": "string", "organisationId": int }

UpdateBasicUserProfile

PUT {{domain}}/api/v1/profile/basic/user

Updates a basic user profile Gender description 0 = Female, 1 = Male

Request Body

Name
Type
Description

object

{ "sSoUSerId": "string", "address": "string", "gender": 0, "dateOfBirth": date, "country" : "string", "state": "string", "organisationId": int }

Last updated

Was this helpful?