Organisation Attributes
GetOrganisationAttribute
GET {{domain}}/api/1/Attribute/organisation
Gets a list of attributes for organisation entity
Query Parameters
Name
Type
Description
Keyword
string
Keyword for searching
pageSize
integer
Page size used in pagination. Default value is 10
pageNumber
integer
Page number used in pagination. Default value is 1
{
"message": "200",
"data": [
{
"id": 1,
"attributeName": "Address",
"entityName": "Organisation",
"total": 4
},
{
"id": 2,
"attributeName": "RCNumber",
"entityName": "Organisation",
"total": 4
}
]
}CreateOrganisationAttribute
POST {{domain}}/api/1/Attribute/organisation
Creates a new attribute for organisation entity
Request Body
Name
Type
Description
object
{ "attributeName": "string", "entityName": "string", "typeName": "string" }
Last updated
Was this helpful?