> For the complete documentation index, see [llms.txt](https://docs.50skills.app/journeys/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.50skills.app/journeys/api-reference/undefined-5/retrieve-traveller-action.md).

# Retrieve journey traveller action

{% openapi src="/files/HceBJd5Oa9ix2AdHFpf4" path="v1/traveller-actions/{id}/" method="get" 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="Python" %}

```python
import requests
response = requests.get(
    "https://journeys-api.50skills.app/v1/traveller-actions/8oz3MlGp/",
)
print(response.json())               
```

{% endtab %}

{% tab title="JavaScript" %}

```javascript
fetch("https://journeys-api.50skills.app/v1/traveller-actions/8oz3MlGp/")
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error(error));                             
```

{% endtab %}
{% endtabs %}

#### Response samples

{% tabs %}
{% tab title="200 " %}
{% code overflow="wrap" %}

```json
{
   "shortId":"nyvPjAKZ",
   "action":"send_sms",
   "description":"Send follow up SMS",
   "values":{
      "message":{
         "value":"Dear Frodo Baggins, this is an automatic text reminder about your trip to Mordor.",
         "variables":{
            
         }
      },
      "recipients":[
         {
            "value":"{{ company_traveller_phone }}",
            "variables":{
               "company_traveller_phone":{
                  "type":"phone",
                  "field":"phone",
                  "label":"Traveller phone",
                  "source":"company_traveller"
               }
            }
         }
      ]
   },
   "data":{
      "message":"Dear Frodo Baggins, this is an automatic text reminder about your trip to Mordor.",
      "recipients":[
         "+441234567890"
      ]
   },
   "isAutomatic":true,
   "parentAction":"nKmRwXz8",
   "savedValues":null,
   "result":null,
   "status":"next_up",
   "ancestors":[
      "nKmRwXz8"
   ],
   "descendants":[
      
   ],
   "assignees":[
      
   ],
   "groupActions":[
      
   ],
   "actionVariables":[
      {
         "action":"journey_start",
         "label":null,
         "description":null,
         "shortId":"nKmRwXz8",
         "fields":{
            
         }
      }
   ],
   "hasJourneyStarted":false,
   "isConfigured":true,
   "travellerJourneyId":"AOyeJ4GX",
   "journeyId":"8oz3gXzp",
   "reminder":null,
   "isJourneyPaused":false,
   "reminderSchedules":[
      
   ],
   "travellerJourney":{
      "id":"AOyeJ4GX",
      "shortId":"AOyeJ4GX",
      "journey":"8oz3gXzp",
      "email":"pippin@50skills.com",
      "name":null,
      "phone":null
   },
   "scheduledDate":null
}
```

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