GET api/productdbs?m2Id={m2Id}
Get the user's product catalogs
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
m2Id |
m2Id |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
the user's product catalogs
Collection of ProfileDTOName | Description | Type | Additional information |
---|---|---|---|
ProfileId |
Profile ID |
string |
None. |
Name |
Profile Name |
string |
None. |
OwnerM2Id |
Owner |
string |
None. |
LastUpdatedOn |
Timestamp. the profile's latest updated time. |
integer |
None. |
Revision |
Revision |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ProfileId": "sample string 1", "Name": "sample string 2", "OwnerM2Id": "sample string 3", "LastUpdatedOn": 4, "Revision": 5 }, { "ProfileId": "sample string 1", "Name": "sample string 2", "OwnerM2Id": "sample string 3", "LastUpdatedOn": 4, "Revision": 5 } ]
application/xml, text/xml
Sample:
<ArrayOfProfileDTO> <ProfileDTO> <ProfileId>sample string 1</ProfileId> <Name>sample string 2</Name> <OwnerM2Id>sample string 3</OwnerM2Id> <LastUpdatedOn>4</LastUpdatedOn> <Revision>5</Revision> </ProfileDTO> <ProfileDTO> <ProfileId>sample string 1</ProfileId> <Name>sample string 2</Name> <OwnerM2Id>sample string 3</OwnerM2Id> <LastUpdatedOn>4</LastUpdatedOn> <Revision>5</Revision> </ProfileDTO> </ArrayOfProfileDTO>