Contacts API

get specific entry

GET /api/rest/admin/contacts/:id

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjU1LCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzQwODUzMDI2fQ.Wba9Zk3e8LarZ6EDNJcwFjWG_ylu_RZIxDsBZ-usoEw
Host: example.org
Cookie: 

Route

GET /api/rest/admin/contacts/47

Response

Headers

X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 0
X-Content-Type-Options: nosniff
X-Permitted-Cross-Domain-Policies: none
Referrer-Policy: strict-origin-when-cross-origin
Content-Type: application/vnd.api+json
Vary: Accept
ETag: W/"35a017b75384b229463cf9cfdd849b8e"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: b750b601-b9d5-4895-a65e-17e96810e52b
X-Runtime: 0.008355
Content-Length: 398

Status

200 OK

Body

{
  "data": {
    "id": "47",
    "type": "contacts",
    "links": {
      "self": "http://example.org/api/rest/admin/contacts/47"
    },
    "attributes": {
      "email": "rspec_mail_3@example.com",
      "notes": null
    },
    "relationships": {
      "contractor": {
        "links": {
          "self": "http://example.org/api/rest/admin/contacts/47/relationships/contractor",
          "related": "http://example.org/api/rest/admin/contacts/47/contractor"
        },
        "data": {
          "type": "contractors",
          "id": "25"
        }
      }
    }
  }
}