Skip to main content

Tenant Service

The tenant resource is a service to view and record your company information and tenancy configuration

Tenant REST API

The Tenant REST API is a private API allowing you to read your tenant information and update your company information and is accessed through the following URL:

https://api.opendatadsl.com/api/tenant

The API consists of the following calls:

MethodPathExampleDescription
GETGet the build information for this service
GET{release}v1View your tenant information
POST{release}v1Update your company information

Updating your company information

To update your company information you need to make a post request to the tenant service, you can use the template below to do this:

POST https://api.opendatadsl.com/api/tenant/v1
Authorization: Bearer {{token}}

{
"properties": {
"name": "",
"address1": "",
"address2": "",
"city": "",
"postcode": "",
"email": "",
"phone": "",
"accountContact": ""
}
}