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": "81a1616b-81f8-4fe6-873a-7a64501f7a06", "ImageUri": "http://webapihelppage2.com", "Identity": "6cc9dbe7-2b2e-414b-bb38-436ee4faa192", "Name": "sample string 4" }, { "ResourceTypeIdentity": "81a1616b-81f8-4fe6-873a-7a64501f7a06", "ImageUri": "http://webapihelppage2.com", "Identity": "6cc9dbe7-2b2e-414b-bb38-436ee4faa192", "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">6cc9dbe7-2b2e-414b-bb38-436ee4faa192</Identity> <Name xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">sample string 4</Name> <ImageUri>http://webapihelppage2.com/</ImageUri> <ResourceTypeIdentity>81a1616b-81f8-4fe6-873a-7a64501f7a06</ResourceTypeIdentity> </ConcurrencyResourceResult> <ConcurrencyResourceResult> <Identity xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">6cc9dbe7-2b2e-414b-bb38-436ee4faa192</Identity> <Name xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">sample string 4</Name> <ImageUri>http://webapihelppage2.com/</ImageUri> <ResourceTypeIdentity>81a1616b-81f8-4fe6-873a-7a64501f7a06</ResourceTypeIdentity> </ConcurrencyResourceResult> </Results> <TotalPages>1</TotalPages> </PaginatedResultsOfConcurrencyResourceResultqMSKJDOU>