> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mangopay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# The Country Authorizations object

### Description

The Country Authorization object provides information about whether or not a country is subject to the following restrictions:

* Blocked user creation
* Blocked bank account creation
* Blocked payout creation

### Attributes

<ParamField body="CountryCode" type="string">
  Format: Two-letter country code ([ISO 3166-1 alpha-2 format](/api-reference/overview/data-formats))

  The code of the country.
</ParamField>

<ParamField body="CountryName" type="string">
  Name of the country.
</ParamField>

<ParamField body="Authorization" type="object">
  Information about the country’s restrictions.

  <Expandable title="properties" defaultOpen>
    <ParamField body="BlockUserCreation" type="boolean">
      Whether or not user creation is possible based on the user’s country of residence, address, and nationality.
    </ParamField>

    <ParamField body="BlockBankAccountCreation" type="boolean">
      Whether or not bank account creation is possible based on the bank’s country of domiciliation.
    </ParamField>

    <ParamField body="BlockPayout" type="boolean">
      Whether or not payout creation is possible based on the bank’s country of domiciliation.
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="LastUpdate" type="Unix timestamp">
  The date and time when at least one of the country's authorizations has been last updated.
</ParamField>

### Related resources

<Card title="Guide" href="/guides/users/country-restrictions">Learn more about country restrictions</Card>
