GET v1/Offices

User roles allowed to make this request: DomainAdministrator PowerUser RegularUser Supervisor LimitedUser LocalDomainManager SampleManager DemoUser

Permissions required to make this request: FieldworkOffice.Read

Retrieve a list of Fieldwork Offices. This list can be filtered and sorted using standard OData syntax.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A (filtered) list of fieldwork offices

Response Message

Collection of OfficesResponseV1Model
NameDescriptionTypeAdditional information
OfficeId

Fieldwork office unique identifier.

string

None.

IsHeadquarters

Gets or sets the property that says whether the fieldwork office is a headquarter.

boolean

None.

OfficeName

Name of the fieldwork office

string

None.

Description

Description of the fieldwork office

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "OfficeId": "sample string 1",
    "IsHeadquarters": true,
    "OfficeName": "sample string 3",
    "Description": "sample string 4"
  },
  {
    "OfficeId": "sample string 1",
    "IsHeadquarters": true,
    "OfficeName": "sample string 3",
    "Description": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfOfficesResponseV1Model xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NipoSoftware.Nfield.Manager.Api.Models.Offices">
  <OfficesResponseV1Model>
    <Description>sample string 4</Description>
    <OfficeName>sample string 3</OfficeName>
    <IsHeadquarters>true</IsHeadquarters>
    <OfficeId>sample string 1</OfficeId>
  </OfficesResponseV1Model>
  <OfficesResponseV1Model>
    <Description>sample string 4</Description>
    <OfficeName>sample string 3</OfficeName>
    <IsHeadquarters>true</IsHeadquarters>
    <OfficeId>sample string 1</OfficeId>
  </OfficesResponseV1Model>
</ArrayOfOfficesResponseV1Model>