Name aliases

Create name alias

POST /api/v1/name_aliases on the Little Outreach JSON API. Send Authorization: Bearer or X-Api-Key on every request.

Description

Attaches an alternate name (maiden name, nickname, d/b/a, trade name) to a Person or
Organization so it surfaces in search. Resolve the owner by `person_public_id` or
`organization_public_id` (preferred) — or fall back to `aliasable_type` +
`aliasable_id`. `source` / `citation` aliases work. Requires `can_edit`.

Tip: to add aliases as part of a person's initial record, include them in the
`POST /api/v1/people` body (`aliases: [ "…" ]`) or on `POST /api/v1/people/quick_add`.

Try & reference

Quick answers

How do I call this endpoint?
Send POST /api/v1/name_aliases to your deployment’s host with Authorization: Bearer or X-Api-Key set to your API key.
Where can I try it interactively?
Use Swagger UI (Authorize with your key) or the API playground.