Skip to main content
OPTIONS
/
tenant
/
{id}
Tenant Resource Options
curl --request OPTIONS \
  --url http://{host}:{port}/{contextPath}/tenant/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "links": [
    {
      "method": "GET",
      "href": "http://localhost:8080/engine-rest/tenant/tenantOne",
      "rel": "self"
    },
    {
      "method": "DELETE",
      "href": "http://localhost:8080/engine-rest/tenant/tenantOne",
      "rel": "delete"
    },
    {
      "method": "PUT",
      "href": "http://localhost:8080/engine-rest/tenant/tenantOne",
      "rel": "update"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The id of the tenant

Response

200 - application/json

Request successful.

The links associated to this resource, with method, href and rel.