Delete Contact

DELETE /v1/contacts/{id}

Path parameters

  • id string Required

    Contact ID

Responses

  • 204 application/json

    No content

    Hide response attribute Show response attribute object
    • data object

      A contact

      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

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