Skip to main content
GET
/
v1
/
organization_details
/
auto_file
/
auto_register
Get Organization Details Auto File Auto Register
curl --request GET \
  --url https://api.trykintsugi.com/v1/organization_details/auto_file/auto_register \
  --header 'X-API-KEY: <api-key>' \
  --header 'x-organization-id: <x-organization-id>'
import requests

url = "https://api.trykintsugi.com/v1/organization_details/auto_file/auto_register"

headers = {
    "x-organization-id": "<x-organization-id>",
    "X-API-KEY": "<api-key>"
}

response = requests.get(url, headers=headers)

print(response.text)
const options = {
  method: 'GET',
  headers: {'x-organization-id': '<x-organization-id>', 'X-API-KEY': '<api-key>'}
};

fetch('https://api.trykintsugi.com/v1/organization_details/auto_file/auto_register', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "auto_register": true,
  "auto_file": true
}
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

X-API-KEY
string
header
required

Headers

x-organization-id
string
required

Response

OrganizationDetailsAutoRegisterAutoFile · object | null

Successful Response

auto_register
boolean | null
auto_file
boolean | null