OfficesApi

interface OfficesApi

Functions

Link copied to clipboard
abstract suspend fun createOffice(postOfficesRequest: PostOfficesRequest): PostOfficesResponse

Create an Office Mandatory Fields name, openingDate, parentId Responses:

Link copied to clipboard
abstract suspend fun getOfficeTemplate(dateFormat: String? = null)

Responses:

Link copied to clipboard
abstract suspend fun postOfficeTemplate(dateFormat: String, locale: String, uploadedInputStream: MultiPartFormDataContent): String

Responses:

Link copied to clipboard
abstract suspend fun retrieveOffice(officeId: Long): GetOfficesResponse

Retrieve an Office Example Requests: offices/1 offices/1?template=true offices/1?fields=id,name,parentName Responses:

Link copied to clipboard
abstract suspend fun retrieveOfficeByExternalId(externalId: String): GetOfficesResponse

Retrieve an Office using external id Example Requests: offices/external-id/asd123 offices/external-id/asd123?template=true offices/external-id/asd123?fields=id,name,parentName Responses:

Link copied to clipboard
abstract suspend fun retrieveOffices(includeAllOffices: Boolean? = false, orderBy: String? = null, sortOrder: String? = null): List<GetOfficesResponse>

List Offices Example Requests: offices offices?fields=id,name,openingDate Responses:

Link copied to clipboard

Retrieve Office Details Template This is a convenience resource. It can be useful when building maintenance user interface screens for client applications. The template data returned consists of any or all of: Field Defaults Allowed description Lists Example Request: offices/template Responses:

Link copied to clipboard
abstract suspend fun updateOffice(officeId: Long, putOfficesOfficeIdRequest: PutOfficesOfficeIdRequest): PutOfficesOfficeIdResponse

Update Office

Link copied to clipboard
abstract suspend fun updateOfficeWithExternalId(externalId: String, putOfficesOfficeIdRequest: PutOfficesOfficeIdRequest): PutOfficesOfficeIdResponse

Update Office