Skip to main content

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.

Responses

Returns organization details

Schema

    name stringrequired
    logo_url stringrequired

    distribution_account

    object

    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 stringrequired

    Possible values: [DISTRIBUTION_ACCOUNT.STELLAR.ENV, DISTRIBUTION_ACCOUNT.STELLAR.DB_VAULT, DISTRIBUTION_ACCOUNT.CIRCLE.DB_VAULT]

    The type of the distribution account.

    status stringrequired

    Possible values: [ACTIVE, PENDING_USER_ACTIVATION]

    distribution_account_public_key string

    DEPRECATED! Please refer to distribution_account.address instead.

    timezone_utc_offset stringrequired
    is_approval_required booleanrequired

    Enables multi-user approval workflow for disbursements

    sms_resend_interval integerrequired

    The amount of days that the SDP will wait to resend the invitation SMS to the receivers that have not registered. If 0, that means the resending invitation SMS feature is disabled.

    payment_cancellation_period_days integerrequired

    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 stringrequired

    The link to the organization privacy policy

    sms_registration_message_template string

    The custom SMS message template set for the registration invite. 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).

Loading...