Get

Returns a list of assignments matching the search parameters of the request. Only assignments published by the authenticated user's company will be listed.

End point

/v2/assignment/get

Request format

GET

Request content

The following parameters can be specified as query string values of the request:

Property Name Type Required Description
id
No

The ID of the assignment.

startdate
No

Earliest publication start date

enddate
No

Latest publication end date

phrase
No

Matches assignments by title or role

status
No


0 (default) – All assignments

1 – Only currently published assignments

2 – Only assignments not currently published

includeclosed
No

Will include closed assignments in the result

Response Messages

Json list of assignment matching the criteria

[
  {
    "id": integer,
    "title": string,
    "referenceNumber": string,
    "text": string,
    "tags": [stringlist],
    "assignmentStartDate": date,
    "assignmentEndDate": date,
    "optionDate": date,
    "publicationEndDate": date,
    "competenceAreaId": integer,
    "extent": {
      "type": integer,
      "value": decimal
    },
    "allowRemote": string,
    "acceptSubcontractors": boolean,
    "applicationEmail": string,
    "category": string,
    "endClientStatus": string,
    "endClientVat": string,
    "externalUrl": string,
    "level": string,
    "maxRate": {
      "rate": decimal,
      "currency": string,
      "type": string,
      "display": string
    },
    "noDelay": boolean,
    "requestorId": integer,
    "locations": [
      {
        "countryId": integer,
        "regionId": integer,
        "city": string
      }
    ],
    "roles": [stringlist],
    "files": [stringlist],
    "showExternalRequestor": boolean
  }
]

Exampel:

[
  {
    "id": 36411,
    "title": "Senior Project Manager",
    "referenceNumber": "123",
    "text": "<p><b>Senior Project Manager</b><br /><br /><b><br />
    For our Client, We are looking for a Senior Project Manager to lead a key initiative</p>",
    "tags": ["Change Management","Project Planning","Resource Allocation","Risk Management"],
    "assignmentStartDate": "2025-01-01T00:00:00",
    "assignmentEndDate": "2026-01-01T00:00:00",
    "optionDate": "2026-01-01T00:00:00",
    "publicationEndDate": "2025-01-01T00:00:00",
    "competenceAreaId": 4,
    "extent": {
      "type": 1,
      "value": 100.00
    },
    "allowRemote": "Partly",
    "acceptSubcontractors": true,
    "applicationEmail": "",
    "category": "Resource",
    "endClientStatus": "Owner",
    "endClientVat": "",
    "externalUrl": "",
    "level": "High",
    "maxRate": {
      "rate": 950.00,
      "currency": "SEK",
      "type": "PerHour",
      "display": "Mandatory"
    },
    "noDelay": false,
    "requestorId": 18536,
    "locations": [
      {
        "countryId": 22,
        "regionId": 12,
        "city": "Stockholm"
      }
    ],
    "roles": ["Project manager"],
    "files": ["r123.pdf"],
    "showExternalRequestor": false
  }
]