# Create traveller journey

{% openapi src="<https://2745779787-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F3Mz58ywsyckDBxRQPsJf%2Fuploads%2Fgit-blob-e4fb17c5b0e22e04724315d184ccee298927525d%2F50skills%20Journeys%20API%202.yaml?alt=media>" path="v1/traveller-journeys/" method="post" expanded="true" %}
[50skills Journeys API 2.yaml](https://2745779787-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F3Mz58ywsyckDBxRQPsJf%2Fuploads%2Fgit-blob-e4fb17c5b0e22e04724315d184ccee298927525d%2F50skills%20Journeys%20API%202.yaml?alt=media)
{% endopenapi %}

#### Request samples

{% tabs %}
{% tab title="Application/JSON" %}
{% code overflow="wrap" %}

```json
{
   "journey":"8oz3gXzp",
   "email":"pippin@50skills.com",
   "name":"Pippin Took",
   "phone":"+441234567890",
   "journey_attribute__nLzNOaye":"2024-11-16",
   "source":"Manually added"
}
```

{% endcode %}
{% endtab %}

{% tab title="Python" %}

```python
import requests
response = requests.post(
    "https://journeys-api.50skills.app/v1/traveller-journeys/",
    json={
        "journey": "8oz3gXzp",
        "email": "pippin@50skills.com",
        "name": "Pippin Took",
        "phone": "+441234567890",
        "journey_attribute__nLzNOaye": "2024-11-16",
        "source": "Manually added"
        ],
    }
)
print(response.json())               
```

{% endtab %}
{% endtabs %}

#### Response samples

{% tabs %}
{% tab title="201 (Created)" %}
{% code overflow="wrap" %}

```json
{
   "id":"AOyeJ4GX"
}
```

{% endcode %}
{% endtab %}
{% endtabs %}
