Skip to main content
GET
https://checkout.dintero.com/v1
/
admin
/
signature
admin_signature_get
curl --request GET \
  --url https://checkout.dintero.com/v1/admin/signature \
  --header 'x-api-key: <api-key>'
import requests

url = "https://checkout.dintero.com/v1/admin/signature"

headers = {"x-api-key": "<api-key>"}

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

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

fetch('https://checkout.dintero.com/v1/admin/signature', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://checkout.dintero.com/v1/admin/signature"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://checkout.dintero.com/v1/admin/signature")
.header("x-api-key", "<api-key>")
.asString();
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "created_by": "<string>",
  "signature": {
    "type": "v0-hmac-sha256",
    "secret": "<string>"
  }
}
{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}
{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}
{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}
{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}
{
"error": {
"message": "<string>",
"code": "<string>",
"errors": [
{}
]
}
}

Authorizations

x-api-key
string
header
required

X-API-Key authentication for accessing admin endpoints. Use Create api-key to create a key.

The content of the header should look like the following:

x-api-key: {api_key}

Response

signature secret

id
string

An ID that uniquely identifies the resource

created_at
string<date-time>

The date-time when the resource was created

created_by
string
signature
object

Secret used when creating Dintero-Signature header of server-to-serer callbacks

Last modified on July 9, 2026