---
title: "Get Organization Info"
method: GET
path: "/organization"
tags: ["Organization"]
---

# Get Organization Info

`GET /organization`

This endpoint returns the organization's info. It is used in many places across the UI. It returns the name in the navbar and the public key of the organization’s distribution account.

## Response `200`

Returns organization details

- Organization
  - `name` string, required
  - `logo_url` string, required
  - `distribution_account` DistributionAccount, required
    - `address` string — The address of the distribution account, present when the account type is `STELLAR`.
    - `circle_wallet_id` string — The ID of the Circle wallet, present when the account type is `CIRCLE`.
    - `type` 'DISTRIBUTION_ACCOUNT.STELLAR.ENV' | 'DISTRIBUTION_ACCOUNT.STELLAR.DB_VAULT' | 'DISTRIBUTION_ACCOUNT.CIRCLE.DB_VAULT', required — The type of the distribution account.
    - `status` 'ACTIVE' | 'PENDING_USER_ACTIVATION', required
  - `distribution_account_public_key` string — DEPRECATED! Please refer to distribution_account.address instead.
  - `timezone_utc_offset` string, required
  - `is_approval_required` boolean, required — Enables multi-user approval workflow for disbursements
  - `receiver_invitation_resend_interval_days` integer, required — The amount of days that the SDP will wait to resend the invitation to the receivers that have not registered. If `0`, that means the resending invitation feature is disabled.
  - `payment_cancellation_period_days` integer, required — The amount of days that the SDP will wait to cancel a payment that is waiting for the receiver to register. If `0`, that means the payment cancellation feature is disabled.
  - `privacy_policy_link` string, required — The link to the organization privacy policy
  - `receiver_registration_message_template` string — The custom template used to send invitations to receivers. The `default` message isn't returned. In the message's content it's possible to add the following template variables: {{.OrganizationName}} which is the Organization Name configured and {{.RegistrationLink}} which is the link generated by SDP to send to the receiver (in case this is not present in the message, it's automatically appended at the end).
  - `otp_message_template` string — The custom OTP message template set to send OTP code to the receiver complete the registration flow. The `default` message isn't returned. In the message's content it's possible to add the following template variables: {{.OrganizationName}} which is the Organization Name configured and {{.OTP}} which is the OTP code to send to the receiver complete the registration flow (in case this is not present in the message, it's automatically appended at the end).

## Other responses

- `401` — Unauthorized

---

[API](https://skmtc.net/stellar/apis/stellar-disbursement-platform-api.md) · [All operations](https://skmtc.net/stellar/apis/stellar-disbursement-platform-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stellar/stellar-disbursement-platform-api/versions/39f9dc64156c/schema)
