# Retrieve account information

## How to use the data call

As this is a data call, you can access it using the 'Get data from an external API' Bubble expression. To retrieve the details regarding a Stripe Account we use the 'Stripe - Retrieve Stripe Account' option that comes with the plugin.&#x20;

![](https://3457273877-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FTaz2BINn0eo6qDdccM8U%2Fuploads%2FEEAN36GmMsjedbWZm3OF%2F%202022-04-05%20om%2017.23.59.png?alt=media\&token=d92a042a-c61c-410e-bcc9-cb3df9b0b6ed)

This call needs the <mark style="color:blue;background-color:blue;">Account ID</mark> value from the account you want to retrieve. We have saved the account ID during the [user onboarding](https://thimoo.gitbook.io/stipe-checkout-connect-bubble-plugin-by-thimo/connecting-stripe-accounts/onboarding-a-user-connecting-stripe-account).

![](https://3457273877-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FTaz2BINn0eo6qDdccM8U%2Fuploads%2FpLkDPpuqnycV9YQkAdWM%2F%202022-04-05%20om%2017.24.34.png?alt=media\&token=47f6e791-593c-434c-a82f-6f2d852c821f)

You will have access to a bunch of values (you can see the full response below).

![](https://3457273877-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FTaz2BINn0eo6qDdccM8U%2Fuploads%2FJwsSaNTGfuBYRVPDAB7X%2F%202022-04-05%20om%2017.24.43.png?alt=media\&token=609af41c-5093-4467-a03b-1e26aa12a4a6)

## Full response

```
{
  "id": "acct_1Kjk9kQ9Db3FNBmF",
  "object": "account",
  "business_profile": {
    "mcc": null,
    "name": null,
    "product_description": null,
    "support_address": null,
    "support_email": null,
    "support_phone": null,
    "support_url": null,
    "url": null
  },
  "business_type": null,
  "charges_enabled": false,
  "country": "NL",
  "created": 1648818289,
  "default_currency": "eur",
  "details_submitted": false,
  "email": null,
  "external_accounts": {
    "object": "list",
    "has_more": false,
    "total_count": 0,
    "url": "/v1/accounts/acct_1Kjk9kQ9Db3FNBmF/external_accounts"
  },
  "future_requirements": {
    "current_deadline": null,
    "disabled_reason": null
  },
  "login_links": {
    "object": "list",
    "total_count": 0,
    "has_more": false,
    "url": "/v1/accounts/acct_1Kjk9kQ9Db3FNBmF/login_links"
  },
  "payouts_enabled": false,
  "requirements": {
    "current_deadline": null,
    "currently_due": [
      "external_account"
    ],
    "disabled_reason": "requirements.past_due",
    "eventually_due": [
      "external_account"
    ],
    "past_due": [
      "external_account"
    ]
  },
  "settings": {
    "branding": {
      "icon": null,
      "logo": null,
      "primary_color": null,
      "secondary_color": null
    },
    "card_issuing": {
      "tos_acceptance": {
        "date": null,
        "ip": null
      }
    },
    "card_payments": {
      "decline_on": {
        "avs_failure": false,
        "cvc_failure": false
      },
      "statement_descriptor_prefix": null
    },
    "dashboard": {
      "display_name": null,
      "timezone": "Etc/UTC"
    },
    "payments": {
      "statement_descriptor": null,
      "statement_descriptor_kana": null,
      "statement_descriptor_kanji": null
    },
    "payouts": {
      "debit_negative_balances": true,
      "schedule": {
        "delay_days": 7,
        "interval": "weekly",
        "weekly_anchor": "tuesday"
      },
      "statement_descriptor": null
    }
  },
  "tos_acceptance": {
    "date": null,
    "ip": null,
    "user_agent": null
  },
  "type": "express"
}
```
