GET api/Search/ConcurrencyResources?resourceTypeIdentity={resourceTypeIdentity}&pageNumber={pageNumber}&itemsPerPage={itemsPerPage}&query={query}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| resourceTypeIdentity | string |
None. |
|
| pageNumber | integer |
Default value is 1 |
|
| itemsPerPage | integer |
Default value is 10 |
|
| query | string |
None. |
Body Parameters
None.
Response Information
Resource Description
PaginatedResultsOfConcurrencyResourceResult| Name | 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": "dbd9ce5e-bcd2-44ba-afce-2db96afd3ca1",
"ImageUri": "http://webapihelppage2.com",
"Identity": "ac3ec791-1221-41dd-8d96-71b17c83a440",
"Name": "sample string 4"
},
{
"ResourceTypeIdentity": "dbd9ce5e-bcd2-44ba-afce-2db96afd3ca1",
"ImageUri": "http://webapihelppage2.com",
"Identity": "ac3ec791-1221-41dd-8d96-71b17c83a440",
"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">ac3ec791-1221-41dd-8d96-71b17c83a440</Identity>
<Name xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">sample string 4</Name>
<ImageUri>http://webapihelppage2.com/</ImageUri>
<ResourceTypeIdentity>dbd9ce5e-bcd2-44ba-afce-2db96afd3ca1</ResourceTypeIdentity>
</ConcurrencyResourceResult>
<ConcurrencyResourceResult>
<Identity xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">ac3ec791-1221-41dd-8d96-71b17c83a440</Identity>
<Name xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">sample string 4</Name>
<ImageUri>http://webapihelppage2.com/</ImageUri>
<ResourceTypeIdentity>dbd9ce5e-bcd2-44ba-afce-2db96afd3ca1</ResourceTypeIdentity>
</ConcurrencyResourceResult>
</Results>
<TotalPages>1</TotalPages>
</PaginatedResultsOfConcurrencyResourceResultqMSKJDOU>