---
title: "Create Traveler"
method: POST
path: "/travelers/"
tags: ["travelers"]
---

# Create Traveler

`POST /travelers/`

Create a new traveler.

## Request body

- CreateTravelerRequest — Request to create a traveler.
  - `first_name` string, required
  - `middle_name` string, nullable
  - `last_name` string, required
  - `date_of_birth` string, date, nullable
  - `gender` 'M' | 'F' — Gender for airline ticketing.
  - `email` string, nullable
  - `phone` string, nullable
  - `address_line_1` string, nullable
  - `address_line_2` string, nullable
  - `city` string, nullable
  - `state` string, nullable
  - `postal_code` string, nullable
  - `address_country` string, nullable
  - `known_traveler_number` string, nullable
  - `redress_number` string, nullable
  - `citizenship` string, nullable
  - `passports` Passport[]
    - `country` string, required
    - `number` string, required
    - `expiry` string, date, nullable
  - `loyalty_memberships` LoyaltyMembership[]
    - `program_id` string, required
    - `number` string, required

## Response `201`

Successful Response

- TravelerResponse — Traveler response with combined name.
  - `id` string, uuid, required
  - `name` string, required
  - `first_name` string, required
  - `middle_name` string, nullable
  - `last_name` string, required
  - `date_of_birth` string, nullable
  - `gender` 'M' | 'F' — Gender for airline ticketing.
  - `email` string, nullable
  - `phone` string, nullable
  - `address_line_1` string, nullable
  - `address_line_2` string, nullable
  - `city` string, nullable
  - `state` string, nullable
  - `postal_code` string, nullable
  - `address_country` string, nullable
  - `known_traveler_number` string, nullable
  - `redress_number` string, nullable
  - `citizenship` string, nullable
  - `citizenship_source` 'explicit' | 'passport' | 'imported' | 'unknown' — How a citizenship value entered the system.
  - `citizenship_confirmed_at` string, nullable
  - `passports` Passport[]
    - `country` string, required
    - `number` string, required
    - `expiry` string, date, nullable
  - `loyalty_memberships` LoyaltyMembership[]
    - `program_id` string, required
    - `number` string, required
  - `is_account_holder` boolean, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/helloaxel/apis/client-api-gateway.md) · [All operations](https://skmtc.dev/helloaxel/apis/client-api-gateway/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/helloaxel/client-api-gateway/revisions/d3c4c29fede7/schema)
