Basic Organisation Profile
GetBasicOrganisationProfiles
GET {{domain}}/api/v1/profile/basic/organisation
Gets the list of basic organisation profiles
Query Parameters
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
Id
string
Organisation Id
CreateBasicOrganisationProfile
POST {{domain}}/api/v1/profile/basic/organisation
Creates a basic organisation profile
Request Body
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
object
{ "Id": int, "name": "string", "address": "string", "email": "string", "phoneNumber": "string", "contactPersonFullName" : "string", "country": "string", "state": "string" }
Last updated
Was this helpful?