Position

All endpoints related to position / job data.

Create Position

POST https://api.yourdomain.com/v1/position/create

Create a new position

Request Body

Name
Type
Description

userId

string

Id of the user creating the position record

position

object

JSON object with the fields and their values

{
    "success": true,
    "position": {
                 "id": "position001",
    }
}

The position property in the response should contain an id property with the id of the newly created position record.

Last updated