Skip to main content
GET
/
tenants
/
{tenant_id}
Fetch tenant
curl --request GET \
  --url https://api.tenants.resistant.ai/v0/tenants/{tenant_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "created": "<string>",
  "updated": "<string>",
  "cells": [
    "eu-1"
  ],
  "_links": {
    "documents-ui": [
      {
        "href": "name-org-name.documents.resistant.ai",
        "rel": "eu-1"
      },
      {
        "href": "name-org-name.us-1.documents.resistant.ai",
        "rel": "us-1"
      },
      {
        "href": "name-org-name.ap-2.documents.resistant.ai",
        "rel": "ap-2"
      },
      {
        "href": "name-org-name.ap-3.documents.resistant.ai",
        "rel": "ap-3"
      },
      {
        "href": "name-org-name.ca-1.documents.resistant.ai",
        "rel": "ca-1"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

JWT with private key. Java example Please note that Token URL is specific for a given environment. Correct URL is in the corresponding environment documentation.

Path Parameters

tenant_id
string
required

Response

Asynchronous processing finished (either with a success or an error). Result of the processing is described by the specific response object.

id
string
required
name
string
required
created
string
required
updated
string
required
cells
enum<string>[]
required

An enumeration.

Available options:
eu-1,
us-1,
ap-2,
ap-3,
ca-1