GET v1/Offices/{officeId}

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

Permissions required to make this request: FieldworkOffice.Read

Retrieve details of a specific fieldwork office.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
officeId

The id of the fieldwork office

string

Required

Body Parameters

None.

Response Information

Resource Description

The details of the office

Response Message

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"
}

application/xml, text/xml

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