Contractors API

create new entry

POST /api/rest/admin/contractors

Parameters

Name Description
data[type] Resource type (contractors)
data[attributes][name] Name
data[attributes][vendor] Vendor
data[attributes][customer] Customer
data[attributes][enabled] Enabled
data[attributes][description] Description
data[attributes][address] Address
data[attributes][phones] Phones
data[attributes][external-id] External id
data[relationships][smtp-connection] Smtp connection

Request

Headers

Accept: application/vnd.api+json
Content-Type: application/vnd.api+json
Authorization: eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOjY0LCJhdWQiOlsiYWRtaW4iXSwiZXhwIjoxNzY3MzU4NTYyfQ.-7cXivzxPMej7uwwtZI95wrk8g1lV0uAkkssnTKBRgc
Host: example.org
Cookie: 

Route

POST /api/rest/admin/contractors

Body

{"data":{"type":"contractors","attributes":{"name":"Contractor name","vendor":true,"customer":true,"enabled":true,"description":"Description","address":"Address","phones":"Phones"}}}

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
location: http://example.org/api/rest/admin/contractors/31
vary: Accept
etag: W/"794d2f142c7501e9d4b5da9e14d7cbcd"
cache-control: max-age=0, private, must-revalidate
x-request-id: 3f85bd4a-5450-416e-8482-f3740f972255
x-runtime: 0.013898
content-length: 504

Status

201 Created

Body

{
  "data": {
    "id": "31",
    "type": "contractors",
    "links": {
      "self": "http://example.org/api/rest/admin/contractors/31"
    },
    "attributes": {
      "name": "Contractor name",
      "enabled": true,
      "vendor": true,
      "customer": true,
      "description": "Description",
      "address": "Address",
      "phones": "Phones",
      "external-id": null
    },
    "relationships": {
      "smtp-connection": {
        "links": {
          "self": "http://example.org/api/rest/admin/contractors/31/relationships/smtp-connection",
          "related": "http://example.org/api/rest/admin/contractors/31/smtp-connection"
        },
        "data": null
      }
    }
  }
}