Skala
Contacts

Get contact details

Retrieves the specific details of a single contact using its unique identifier.

GET
/api/contacts/{id}

Retrieves the specific details of a single contact using its unique identifier.

AuthorizationBearer <token>

In: header

Path Parameters

id*string

Contact identifier

Response Body

application/json

curl -X GET "https://api.skalasuite.com/api/contacts/string"
{
  "id": 0,
  "name": "string",
  "email": "string",
  "phoneNumber": "string",
  "comment": "string",
  "type": "string",
  "address": {
    "id": 0,
    "country": {
      "id": 0,
      "name": "string"
    },
    "body": "string"
  },
  "code": "string",
  "discountRate": "string",
  "taxOffice": "string",
  "taxId": "string"
}
Empty