GET api/Homes/{homeid}/Jobs
Returns the list of jobs for searched home from CRM. Note: Requires a valid access token to be provided in the request's auth header.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| homeid |
Guid. |
globally unique identifier |
Required |
Body Parameters
Entity.
Entity| Name | Description | Type | Additional information |
|---|---|---|---|
| LogicalName | string |
Optional |
|
| Id | globally unique identifier |
Optional |
|
| Attributes | Collection of Object |
Optional |
|
| EntityState | EntityState |
Optional |
|
| FormattedValues | Collection of Object |
Optional |
|
| RelatedEntities | Collection of Object |
Optional |
Request Formats
application/json, text/json
Sample:
Sample not available.
Response Information
Resource Description
List of CrmJobs
Collection of CrmJobs| Name | Description | Type | Additional information |
|---|---|---|---|
| JobId |
JobId of Job. |
string |
Optional |
| Type |
Type of Job. |
string |
Optional |
| Date |
Job Created On Date. |
date |
Optional |
| Reference |
Used to reference the Job in CRM. |
EntityReference |
Required |
| SystemDate |
Current system date of the client that created this object. |
date |
Optional |
| CapturedDate |
Date and time the client created this object. |
date |
Optional |
Response Formats
application/json, text/json
Sample:
[
{
"JobId": "sample string 1",
"Type": "sample string 2",
"Date": "2025-10-30T10:31:35.3912387-05:00",
"Reference": {
"Id": "2d0d70f3-a11d-4f2d-a16e-525a02c75d93",
"LogicalName": "sample string 2",
"Name": "sample string 3"
},
"SystemDate": "2025-10-30T10:31:35.3912387-05:00",
"CapturedDate": "2025-10-30T10:31:35.3912387-05:00"
},
{
"JobId": "sample string 1",
"Type": "sample string 2",
"Date": "2025-10-30T10:31:35.3912387-05:00",
"Reference": {
"Id": "2d0d70f3-a11d-4f2d-a16e-525a02c75d93",
"LogicalName": "sample string 2",
"Name": "sample string 3"
},
"SystemDate": "2025-10-30T10:31:35.3912387-05:00",
"CapturedDate": "2025-10-30T10:31:35.3912387-05:00"
}
]