Skip to main content
GET
https://api.dintero.com/v1
/
account
/
user
account_user_get
curl --request GET \
  --url https://api.dintero.com/v1/account/user \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "accounts": [
    {
      "account_id": "P12345678",
      "user": {
        "id": "<string>",
        "email": "customer@example.com",
        "last_seen_at": "2023-11-07T05:31:56Z",
        "scope": [
          "receipts:write"
        ],
        "name": "<string>",
        "agreement": {
          "name": "<string>",
          "version": "<string>",
          "personal_guarantee_accepted": true,
          "attachments": [
            {
              "name": "Cookie Policy",
              "version": "<string>"
            }
          ]
        }
      },
      "business_name": "TKP technology AS",
      "public_business_name": "TKP tech",
      "organization_number": "123456789MVA",
      "display_name": "TKP tech instore AS",
      "icon_url": "<string>"
    }
  ],
  "configuration": {
    "mfa": {
      "sms": {
        "updated_at": "2023-11-07T05:31:56Z",
        "enabled": true
      },
      "totp": {
        "updated_at": "2023-11-07T05:31:56Z",
        "enabled": true
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication (token authentication) should be used for accessing the API.

Use Get Token to get an access token for client credentials. Pass the token in the request header:

Authorization: Bearer {access_token}

where the access_token is JSON Web Tokens (JWT).

Response

User account

id
string
required
accounts
object[]
required
configuration
object

Account user configurations

Last modified on June 19, 2026