POST residentapi/pets
Create a pet record for a unit
Request Information
URI Parameters
None.
Body Parameters
PetCreate| Name | Description | Type | Additional information |
|---|---|---|---|
| PropertyId |
ConnectPropertyId |
integer |
Required |
| UnitId |
ConnectUnitId |
integer |
Required |
| ResidentId |
ConnectResidentId |
integer |
Required |
| Name |
Name |
string |
Required |
| Description |
Description |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"propertyId": 1,
"unitId": 2,
"residentId": 3,
"name": "sample string 4",
"description": "sample string 5"
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Pet| Name | Description | Type | Additional information |
|---|---|---|---|
| PetId |
PetId |
integer |
None. |
| PropertyId |
ConnectPropertyId |
integer |
None. |
| UnitId |
ConnectUnitId |
integer |
None. |
| ResidentId |
ConnectResidentId |
integer |
None. |
| OccupantName |
OccupantName |
string |
None. |
| Unit |
UnitNumber |
string |
None. |
| Name |
Name |
string |
None. |
| Description |
Description |
string |
None. |
| VaccinationDate |
VaccinationDate |
date |
None. |
Response Formats
application/json, text/json
Sample:
{
"petId": 1,
"propertyId": 2,
"unitId": 3,
"residentId": 4,
"occupantName": "sample string 5",
"unit": "sample string 6",
"name": "sample string 7",
"description": "sample string 8",
"vaccinationDate": "2025-12-24T09:10:20.5072331-05:00"
}