Request Information

URI Parameters

NameDescriptionTypeAdditional information
organizationId

The organization Identifier.

string

None.

Body Parameters

None.

Response Information

Resource Description

A list of states.

Collection of Pico.State
NameDescriptionTypeAdditional information
abbreviation

Gets or sets the state abbreviation.

string

None.

isLicensed

Gets or sets a value indicating whether company is licensed to do business in this state.

boolean

None.

name

Gets or sets the name.

string

None.

id

Gets or sets the state identifier.

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "abbreviation": "sample String 1",
    "isLicensed": true,
    "name": "sample String 3",
    "id": "sample String 4"
  },
  {
    "abbreviation": "sample String 1",
    "isLicensed": true,
    "name": "sample String 3",
    "id": "sample String 4"
  }
]

text/html

Sample:
[{"abbreviation":"sample String 1","isLicensed":true,"name":"sample String 3","id":"sample String 4"},{"abbreviation":"sample String 1","isLicensed":true,"name":"sample String 3","id":"sample String 4"}]

application/xml, text/xml

Sample:
<ArrayOfState xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <State>
    <Abbreviation>sample String 1</Abbreviation>
    <IsLicensed>true</IsLicensed>
    <Name>sample String 3</Name>
    <StateId>sample String 4</StateId>
  </State>
  <State>
    <Abbreviation>sample String 1</Abbreviation>
    <IsLicensed>true</IsLicensed>
    <Name>sample String 3</Name>
    <StateId>sample String 4</StateId>
  </State>
</ArrayOfState>