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": "669b845b-7a89-4a06-85b8-c6d08ae7c69a",
"ImageUri": "http://webapihelppage2.com",
"Identity": "8fbc7d62-30ee-4352-a779-b4bf5518cd38",
"Name": "sample string 4"
},
{
"ResourceTypeIdentity": "669b845b-7a89-4a06-85b8-c6d08ae7c69a",
"ImageUri": "http://webapihelppage2.com",
"Identity": "8fbc7d62-30ee-4352-a779-b4bf5518cd38",
"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">8fbc7d62-30ee-4352-a779-b4bf5518cd38</Identity>
<Name xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">sample string 4</Name>
<ImageUri>http://webapihelppage2.com/</ImageUri>
<ResourceTypeIdentity>669b845b-7a89-4a06-85b8-c6d08ae7c69a</ResourceTypeIdentity>
</ConcurrencyResourceResult>
<ConcurrencyResourceResult>
<Identity xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">8fbc7d62-30ee-4352-a779-b4bf5518cd38</Identity>
<Name xmlns="http://schemas.datacontract.org/2004/07/Scientia.Platform.Library.Security">sample string 4</Name>
<ImageUri>http://webapihelppage2.com/</ImageUri>
<ResourceTypeIdentity>669b845b-7a89-4a06-85b8-c6d08ae7c69a</ResourceTypeIdentity>
</ConcurrencyResourceResult>
</Results>
<TotalPages>1</TotalPages>
</PaginatedResultsOfConcurrencyResourceResultqMSKJDOU>