Basic Organisation Profile

GetBasicOrganisationProfiles

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

Gets the list of basic organisation 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": [
    {
      "id": 1,
      "name": "Techmuncher Limited",
      "address": "Victoria Island",
      "email": "[email protected]",
      "phoneNumber": "09012345678",
      "contactPersonFullName": "Ahmed Bolu",
      "country": "Nigeria",
      "state": "Lagos"
    }
  ]
}

GetBasicOrganisationProfileById

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

Gets a single basic organisation profile by Id

Query Parameters

Name
Type
Description

Id

string

Organisation Id

CreateBasicOrganisationProfile

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

Creates a basic organisation profile

Request Body

Name
Type
Description

object

{ "name": "string", "address": "string", "email": "string", "phoneNumber": "string", "contactPersonFullName" : "string", "country": "string", "state": "string" }

UpdatesBasicOrganisationProfile

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

Updates a basic organisation profile

Request Body

Name
Type
Description

object

{ "Id": int, "name": "string", "address": "string", "email": "string", "phoneNumber": "string", "contactPersonFullName" : "string", "country": "string", "state": "string" }

Last updated

Was this helpful?