POST api/Profile
Request Information
URI Parameters
None.
Body Parameters
GetProfile| Name | Description | Type | Additional information |
|---|---|---|---|
| AcId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"AcId": 1
}
application/xml, text/xml
Sample:
<GetProfile xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cabie.API.Models"> <AcId>1</AcId> </GetProfile>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetProfileResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| MobileNumber | string |
None. |
|
| Address | string |
None. |
|
| City | string |
None. |
|
| Country | string |
None. |
|
| CreatedDate | date |
None. |
|
| EmailAddress | string |
None. |
|
| Enabled | boolean |
None. |
|
| VerificationStatus | boolean |
None. |
|
| AccountType_Id | integer |
None. |
|
| Company_Id | integer |
None. |
|
| Balance | decimal number |
None. |
|
| Rating | decimal number |
None. |
|
| DateOfBirth | string |
None. |
|
| Gender | integer |
None. |
|
| Path | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"FirstName": "sample string 1",
"LastName": "sample string 2",
"MobileNumber": "sample string 3",
"Address": "sample string 4",
"City": "sample string 5",
"Country": "sample string 6",
"CreatedDate": "2025-12-17T07:04:24.2746956+01:00",
"EmailAddress": "sample string 7",
"Enabled": true,
"VerificationStatus": true,
"AccountType_Id": 1,
"Company_Id": 1,
"Balance": 1.1,
"Rating": 1.1,
"DateOfBirth": "sample string 8",
"Gender": 1,
"Path": "sample string 9"
}
application/xml, text/xml
Sample:
<GetProfileResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cabie.API.Models"> <AccountType_Id>1</AccountType_Id> <Address>sample string 4</Address> <Balance>1.1</Balance> <City>sample string 5</City> <Company_Id>1</Company_Id> <Country>sample string 6</Country> <CreatedDate>2025-12-17T07:04:24.2746956+01:00</CreatedDate> <DateOfBirth>sample string 8</DateOfBirth> <EmailAddress>sample string 7</EmailAddress> <Enabled>true</Enabled> <FirstName>sample string 1</FirstName> <Gender>1</Gender> <LastName>sample string 2</LastName> <MobileNumber>sample string 3</MobileNumber> <Path>sample string 9</Path> <Rating>1.1</Rating> <VerificationStatus>true</VerificationStatus> </GetProfileResponse>