GET api/progressionchain/{id}
Get the progression chain for purchasing role Processes this progression chain API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Purchasing Role Id |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The response returned after the operation completes.
ChainDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| ChainItems |
The collection of chain items. |
Collection of ChainItemDataContract |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"ChainItems": [
{
"Notes": "sample string 1",
"EstateAgent": "sample string 2",
"Solicitor": "sample string 3",
"Reference": "sample string 4",
"Up": [
1,
2
],
"Down": [
1,
2
],
"Id": 5
},
{
"Notes": "sample string 1",
"EstateAgent": "sample string 2",
"Solicitor": "sample string 3",
"Reference": "sample string 4",
"Up": [
1,
2
],
"Down": [
1,
2
],
"Id": 5
}
],
"Id": 1
}