Skip to main content
GET
/
projects
/
{projectId}
/
routes
List routes for a project
curl --request GET \
  --url https://api.lettermint.co/v1/projects/{projectId}/routes \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "slug": "<string>",
      "name": "<string>",
      "route_type": "transactional",
      "is_default": true,
      "webhooks_count": 123,
      "suppressed_recipients_count": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "path": "<string>",
  "per_page": 123,
  "next_cursor": "<string>",
  "next_page_url": "<string>",
  "prev_cursor": "<string>",
  "prev_page_url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

projectId
string
required

Query Parameters

sort
string
default:-created_at

Available sorts are name, slug, created_at. You can sort by multiple options by separating them with a comma. To sort in descending order, use - sign in front of the sort, for example: -name.

page[size]
integer
default:30

The number of results that will be returned per page.

page[cursor]
string

The cursor to start the pagination from.

filter[route_type]
enum<string>
Available options:
transactional,
broadcast,
inbound
filter[is_default]
boolean

Search by name or slug

Response

200 - application/json

Paginated set of RouteListData

data
RouteListData · object[]
required
path
string | null
required

Base path for paginator generated URLs.

per_page
integer
required

Number of items shown per page.

next_cursor
string | null
required

The "cursor" that points to the next set of items.

next_page_url
string<uri> | null
required
prev_cursor
string | null
required

The "cursor" that points to the previous set of items.

prev_page_url
string<uri> | null
required