Table of contents

    Overview

    To call the Position endpoint, use one of the URLs from the following table:

    URL GET PUT POST DELETE
    https://api.mypcorp.com/position
    https://api.mypcorp.com/position/{PositionGuid}

    GET

    The following table illustrates which fields can be included when receiving a GET response.

    Position
    Field Name Description
    PositionGuid
    Guid (Identifier)
    The Position id.
    Name
    string
    The name of the Position.
    CreationDate
    datetime
    The date the Position record was created.
    ArchiveDate
    datetime
    Date and time when this Position was archived, if it has been archived.

    Example JSON response:

    {
      "@odata.context": "https://api.mypcorp.com/$metadata#Position",
      "value": [
        {
          "PositionGuid": "ff2dcfa7-92ec-4620-9015-a815721416f9",
          "Name": "Plan Manager",
          "CreationDate": "2021-08-17T20:46:08.14+10:00",
          "ArchiveDate": null
        }
      ]
    }

    Previous article Next article