GET api/v1/assignments/productiveids

Returns all shifts for the department. This is an asynchronous service.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ApiResponseModelOfListOfProductiveKeyValueModel
NameDescriptionTypeAdditional information
Data

ApiResponseDataModelOfListOfProductiveKeyValueModel

None.

Errors

Collection of string

None.

Warnings

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {
    "PageSize": 1,
    "Page": 2,
    "TotalPages": 3,
    "TotalResults": 4,
    "Results": [
      {
        "ProductiveId": 1,
        "Description": "sample string 2"
      },
      {
        "ProductiveId": 1,
        "Description": "sample string 2"
      }
    ]
  },
  "Errors": [
    "sample string 1",
    "sample string 2"
  ],
  "Warnings": [
    "sample string 1",
    "sample string 2"
  ]
}