POST api/v1/network/searchByParent

Request Information

URI Parameters

None.

Body Parameters

SearchNetworkByParentRequest
NameDescriptionTypeAdditional information
query

string

None.

parentName

string

None.

parentType

Collection of integer

None.

limit

integer

None.

page

integer

None.

orderBy

string

None.

resumed

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "query": "sample string 1",
  "parentName": "sample string 2",
  "parentType": [
    1,
    2
  ],
  "limit": 1,
  "page": 1,
  "orderBy": "sample string 3",
  "resumed": true
}

application/xml, text/xml

Sample:
<SearchNetworkByParentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebsiteAPI.Model">
  <Limit>1</Limit>
  <OrderBy>sample string 3</OrderBy>
  <Page>1</Page>
  <ParentName>sample string 2</ParentName>
  <ParentType xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </ParentType>
  <Query>sample string 1</Query>
  <Resumed>true</Resumed>
</SearchNetworkByParentRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SearchNetworkByParentRequest'.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.