POST api/Organization/GetOrganizations

Request Information

URI Parameters

None.

Body Parameters

OrganizationItemViewModel
NameDescriptionTypeAdditional information
BankAccountNumber

string

None.

VAT

string

None.

PortalId

string

None.

UserId

integer

None.

Id

string

None.

Name

string

None.

LegalName

string

None.

Description

string

None.

Address

string

None.

City

string

None.

Province

string

None.

Postcode

string

None.

IsActive

boolean

None.

OrganizationLogoUrl

string

None.

ReturnStatus

boolean

None.

ReturnMessage

Collection of string

None.

ValidationErrors

Dictionary of Object [key] and Object [value]

None.

TotalPages

integer

None.

TotalRows

integer

None.

PageSize

integer

None.

IsAuthenticated

boolean

None.

SortExpression

string

None.

SortDirection

string

None.

CurrentPageNumber

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "bankAccountNumber": "sample string 1",
  "vat": "sample string 2",
  "portalId": "sample string 3",
  "userId": 4,
  "id": "sample string 5",
  "name": "sample string 6",
  "legalName": "sample string 7",
  "description": "sample string 8",
  "address": "sample string 9",
  "city": "sample string 10",
  "province": "sample string 11",
  "postcode": "sample string 12",
  "isActive": true,
  "organizationLogoUrl": "sample string 14",
  "returnStatus": true,
  "returnMessage": [
    "sample string 1",
    "sample string 2"
  ],
  "validationErrors": {
    "system.Object": {}
  },
  "totalPages": 16,
  "totalRows": 17,
  "pageSize": 18,
  "isAuthenticated": true,
  "sortExpression": "sample string 20",
  "sortDirection": "sample string 21",
  "currentPageNumber": 22
}

application/xml, text/xml

Sample:
<OrganizationItemViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.ViewModels">
  <CurrentPageNumber xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">22</CurrentPageNumber>
  <IsAuthenticated xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">true</IsAuthenticated>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">18</PageSize>
  <ReturnMessage xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </ReturnMessage>
  <ReturnStatus xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">true</ReturnStatus>
  <SortDirection xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">sample string 21</SortDirection>
  <SortExpression xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">sample string 20</SortExpression>
  <TotalPages xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">16</TotalPages>
  <TotalRows xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">17</TotalRows>
  <ValidationErrors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Fila12.Business.Entities">
    <d2p1:KeyValueOfanyTypeanyType>
      <d2p1:Key />
      <d2p1:Value />
    </d2p1:KeyValueOfanyTypeanyType>
    <d2p1:KeyValueOfanyTypeanyType>
      <d2p1:Key />
      <d2p1:Value />
    </d2p1:KeyValueOfanyTypeanyType>
  </ValidationErrors>
  <Address>sample string 9</Address>
  <City>sample string 10</City>
  <Description>sample string 8</Description>
  <Id>sample string 5</Id>
  <IsActive>true</IsActive>
  <LegalName>sample string 7</LegalName>
  <Name>sample string 6</Name>
  <OrganizationLogoUrl>sample string 14</OrganizationLogoUrl>
  <Postcode>sample string 12</Postcode>
  <Province>sample string 11</Province>
  <BankAccountNumber>sample string 1</BankAccountNumber>
  <PortalId>sample string 3</PortalId>
  <UserId>4</UserId>
  <VAT>sample string 2</VAT>
</OrganizationItemViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

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.