List All Contacts

GET /v1/contacts

Responses

  • 200 application/json

    Contact Response

    Hide response attribute Show response attribute object
    • data array[object]

      The contacts details

      Hide data attributes Show data attributes object
      • email string(email) Required

        Email address

      • Contact first name

        Format should match the following pattern: [a-zA-Z][a-zA-Z0-9_]+.

      • id integer

        Contact ID

      • insertedAt string(date-time)

        Creation timestamp

      • lastName string

        Contact last name

        Format should match the following pattern: [a-zA-Z][a-zA-Z0-9_]+.

      • updatedAt string(date-time)

        Update timestamp

GET /v1/contacts
curl \
 -X GET https://api.azav-pilot.de/v1/contacts
Response examples (200)
{
  "data": [
    {
      "id": "<uuid v4>",
      "last_name": "Muster",
      "first_name": "Melanie"
    },
    {
      "id": "<uuid v4>",
      "last_name": "Muster",
      "first_name": "Melanie"
    }
  ]
}