GET api/Portfolios/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PortfolioData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Identifier | string |
None. |
|
| Name | string |
None. |
|
| Updated | date |
None. |
|
| Restricted | boolean |
None. |
|
| Exclusive | boolean |
None. |
|
| PriceListId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "672d7657-dc87-498f-bf5c-39a2558e0cb2",
"Identifier": "sample string 1",
"Name": "sample string 2",
"Updated": "2025-12-15T23:44:40.4677263-05:00",
"Restricted": true,
"Exclusive": true,
"PriceListId": "c714fefb-ec64-4222-806e-1b8c43d8614c"
}
application/xml, text/xml
Sample:
<PortfolioData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <Exclusive>true</Exclusive> <Id>672d7657-dc87-498f-bf5c-39a2558e0cb2</Id> <Identifier>sample string 1</Identifier> <Name>sample string 2</Name> <PriceListId>c714fefb-ec64-4222-806e-1b8c43d8614c</PriceListId> <Restricted>true</Restricted> <Updated>2025-12-15T23:44:40.4677263-05:00</Updated> </PortfolioData>