Smtp connections API

update values

PUT /api/rest/admin/smtp-connections/:id

Parameters

Name Description
data[type] Resource type (smtp-connections)
data[id] Smtp connection ID
data[attributes][name] Name

Request

Headers

Version: HTTP/1.0
Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjIzNCwiYXVkIjpbImFkbWluIl0sImV4cCI6MTc0MDg1MzA0Mn0.ziFnRz8itqU-kBQea3EMXhTzjtcE3_HlbfZVSXT-x5E
Host: example.org
Cookie: 

Route

PUT /api/rest/admin/smtp-connections/5

Body

{"data":{"type":"smtp-connections","id":5,"attributes":{"name":"name"}}}

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/"ee925e1642a3f480f9ba8912cb091a43"
Cache-Control: max-age=0, private, must-revalidate
X-Request-Id: 951394ae-786b-4d1c-afd2-66b80dbef3aa
X-Runtime: 0.014908
Content-Length: 257

Status

200 OK

Body

{
  "data": {
    "id": "5",
    "type": "smtp-connections",
    "links": {
      "self": "http://example.org/api/rest/admin/smtp-connections/5"
    },
    "attributes": {
      "name": "name",
      "host": "host",
      "port": 25,
      "from-address": "address@email.com",
      "auth-user": null,
      "auth-password": null,
      "global": true
    }
  }
}