GET api/RepairScopes/{id}
Returns a repair scope by id. Note: Requires a valid access token to be provided in the request's auth header.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Id of repair scope. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns a repair scope by id.
CrmRepairScope| Name | Description | Type | Additional information |
|---|---|---|---|
| Description |
Text describing the details of the repair scope. Intended as Inspection Level - General Guidelines. |
string |
Optional |
| Id |
Unique Identifier (CRM Internal) of the repair scope. |
globally unique identifier |
Optional |
| Name |
Human-Readable Identifier of the repair scope. |
string |
Optional |
| Reference |
Used to reference the entity in CRM. |
EntityReference |
Optional |
| 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:
{
"Description": "sample string 1",
"Id": "ba0a7694-0fbe-4b86-a280-552898bba7af",
"Name": "sample string 3",
"Reference": {
"Id": "14596209-29f9-4c1d-b146-e7b1082996d7",
"LogicalName": "sample string 2",
"Name": "sample string 3"
},
"SystemDate": "2025-10-30T10:33:29.7927866-05:00",
"CapturedDate": "2025-10-30T10:33:29.7927866-05:00"
}