curl --request GET \
--url https://api.sandbox.tesouro.com/identity/v1/disclosures \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.sandbox.tesouro.com/identity/v1/disclosures"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.sandbox.tesouro.com/identity/v1/disclosures', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sandbox.tesouro.com/identity/v1/disclosures",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sandbox.tesouro.com/identity/v1/disclosures"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sandbox.tesouro.com/identity/v1/disclosures")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sandbox.tesouro.com/identity/v1/disclosures")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"accepted": true,
"documents": [
{
"title": "<string>",
"url": "<string>"
}
],
"requirement": "NOT_REQUIRED",
"version": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"capacities": [
{
"accepted": true,
"canAccept": true,
"capacity": "ENTITY",
"documents": [
{
"title": "<string>",
"url": "<string>"
}
],
"standing": "CLEAR",
"version": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"graceDeadlineTsUtc": "2023-11-07T05:31:56Z"
}
]
}{
"detail": "<string>",
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "<string>"
}{
"detail": "<string>",
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "<string>"
}{
"detail": "<string>",
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "<string>"
}{
"detail": "<string>",
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "<string>"
}List disclosures
curl --request GET \
--url https://api.sandbox.tesouro.com/identity/v1/disclosures \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.sandbox.tesouro.com/identity/v1/disclosures"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.sandbox.tesouro.com/identity/v1/disclosures', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.sandbox.tesouro.com/identity/v1/disclosures",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.sandbox.tesouro.com/identity/v1/disclosures"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.sandbox.tesouro.com/identity/v1/disclosures")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.sandbox.tesouro.com/identity/v1/disclosures")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"accepted": true,
"documents": [
{
"title": "<string>",
"url": "<string>"
}
],
"requirement": "NOT_REQUIRED",
"version": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"capacities": [
{
"accepted": true,
"canAccept": true,
"capacity": "ENTITY",
"documents": [
{
"title": "<string>",
"url": "<string>"
}
],
"standing": "CLEAR",
"version": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"graceDeadlineTsUtc": "2023-11-07T05:31:56Z"
}
]
}{
"detail": "<string>",
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "<string>"
}{
"detail": "<string>",
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "<string>"
}{
"detail": "<string>",
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "<string>"
}{
"detail": "<string>",
"instance": "<string>",
"status": 123,
"title": "<string>",
"type": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
The invitee. Only meaningful on an application token, and only alongside invitationToken: the id is client-supplied, and the token is what makes it trustworthy. Ignored when a user token identifies the caller. Omit both to be answered for the organization the application token is acting as.
The invitation token issued to userId. Required alongside it, and omitted when naming nobody.
Response
The version in force, the requirement, whether this caller has accepted it, the documents, and the same for every capacity with a version in force. Acceptance is false when nobody was named.
The disclosures in force for a caller, and whether they have accepted them.
Whether this caller has accepted the version above. False for an invitee by definition, and false again for an existing user after a new version is published. Without it a client cannot tell a cleared user from one owing re-acceptance, and has to prompt everyone or nobody.
The documents making up the version, in the order to present them.
Show child attributes
Show child attributes
Whether this caller's organization requires disclosures at all.
NOT_REQUIRED, REQUIRED The version in force, or null if the caller's bank has published none. Submit this back when accepting, so an acceptance cannot be recorded against documents that were superseded while the caller was reading them.
Every capacity with a version in force, whether or not it falls on this caller, so a client can list what governs the organization. The fields above describe the person capacity alone. Whether an entry is this caller's to act on is carried by its standing and canAccept, never by being absent.
Show child attributes
Show child attributes
Was this page helpful?