POST api/Actor/Search

Request Information

URI Parameters

None.

Body Parameters

ActorPaginated
NameDescriptionTypeAdditional information
IdUser

integer

None.

Page

integer

None.

Size

integer

None.

SearchText

string

None.

IsFederal

boolean

None.

IsState

boolean

None.

Countries

Collection of integer

None.

States

Collection of integer

None.

ActorTypes

Collection of integer

None.

Parties

Collection of integer

None.

Legislatures

Collection of integer

None.

OrderType

integer

None.

JustFollowing

boolean

None.

IdFollowingList

integer

None.

PublicFollowing

boolean

None.

IgnoreHighlights

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "IdUser": 1,
  "Page": 2,
  "Size": 3,
  "SearchText": "sample string 4",
  "IsFederal": true,
  "IsState": true,
  "Countries": [
    1,
    2
  ],
  "States": [
    1,
    2
  ],
  "ActorTypes": [
    1,
    2
  ],
  "Parties": [
    1,
    2
  ],
  "Legislatures": [
    1,
    2
  ],
  "OrderType": 7,
  "JustFollowing": true,
  "IdFollowingList": 1,
  "PublicFollowing": true,
  "IgnoreHighlights": true
}

application/xml, text/xml

Sample:
<ActorPaginated xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalMind.AgendaV2.Domain.Transport">
  <ActorTypes xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </ActorTypes>
  <Countries xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </Countries>
  <IdFollowingList>1</IdFollowingList>
  <IdUser>1</IdUser>
  <IgnoreHighlights>true</IgnoreHighlights>
  <IsFederal>true</IsFederal>
  <IsState>true</IsState>
  <JustFollowing>true</JustFollowing>
  <Legislatures xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </Legislatures>
  <OrderType>7</OrderType>
  <Page>2</Page>
  <Parties xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </Parties>
  <PublicFollowing>true</PublicFollowing>
  <SearchText>sample string 4</SearchText>
  <Size>3</Size>
  <States xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:int>1</d2p1:int>
    <d2p1:int>2</d2p1:int>
  </States>
</ActorPaginated>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.