GET api/ConcurrencyGroups/ResourceTypes/{resourceTypeIdentity}/ResourceGroups/{resourceGroupIdentity}/Resources?pageNumber={pageNumber}&itemsPerPage={itemsPerPage}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
resourceTypeIdentity | string |
Required |
|
resourceGroupIdentity | string |
Required |
|
pageNumber | integer |
Default value is 1 |
|
itemsPerPage | integer |
Default value is 10 |
Body Parameters
None.
Response Information
Resource Description
PaginatedResultsOfConcurrencyResourceResultName | Description | Type | Additional information |
---|---|---|---|
TotalPages | integer |
None. |
|
CurrentPage | integer |
None. |
|
Results | Collection of ConcurrencyResourceResult |
None. |
|
Count | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "TotalPages": 1, "CurrentPage": 2, "Results": [ { "ResourceTypeIdentity": "8e1ab590-c630-4f0d-b880-da7ff4d1d132", "ImageUri": "http://webapihelppage2.com", "Identity": "ae0215e7-9b4b-46fa-be9c-475fabf801c7", "Name": "sample string 4" }, { "ResourceTypeIdentity": "8e1ab590-c630-4f0d-b880-da7ff4d1d132", "ImageUri": "http://webapihelppage2.com", "Identity": "ae0215e7-9b4b-46fa-be9c-475fabf801c7", "Name": "sample string 4" } ], "Count": 3 }
application/xml, text/xml
Sample:
<PaginatedResultsOfConcurrencyResourceResultqMSKJDOU xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.API.Model"> <Count>3</Count> <CurrentPage>2</CurrentPage> <Results> <ConcurrencyResourceResult> <Identity xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">ae0215e7-9b4b-46fa-be9c-475fabf801c7</Identity> <Name xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">sample string 4</Name> <ImageUri>http://webapihelppage2.com/</ImageUri> <ResourceTypeIdentity>8e1ab590-c630-4f0d-b880-da7ff4d1d132</ResourceTypeIdentity> </ConcurrencyResourceResult> <ConcurrencyResourceResult> <Identity xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">ae0215e7-9b4b-46fa-be9c-475fabf801c7</Identity> <Name xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">sample string 4</Name> <ImageUri>http://webapihelppage2.com/</ImageUri> <ResourceTypeIdentity>8e1ab590-c630-4f0d-b880-da7ff4d1d132</ResourceTypeIdentity> </ConcurrencyResourceResult> </Results> <TotalPages>1</TotalPages> </PaginatedResultsOfConcurrencyResourceResultqMSKJDOU>