> For the complete documentation index, see [llms.txt](https://leadexporter.gitbook.io/custom-integrations/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://leadexporter.gitbook.io/custom-integrations/position.md).

# Position

All endpoints related to position / job data.

## Create Position

<mark style="color:green;">`POST`</mark> `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 |

{% tabs %}
{% tab title="200 Position created successfully" %}

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

{% endtab %}
{% endtabs %}

{% hint style="info" %}
The **position** property in the response should contain an **id** property with the id of the newly created position record.
{% endhint %}
