Blocked User object

A user can have its inflows (payins) and/or its outflows (payouts) blocked. The following describes which have been blocked, the action code to unblock them and the concerned user.

Please see the Blocked User page for further info.

Parameters

ActionCode
int

int

A code corresponding to a specific action to unblock the user. More information in the section Anti-Fraud / Blocked Users.

ScopeBlocked
ScopeBlocked

ScopeBlocked:

ScopeBlocked

ScopeBlocked

View Sub-parameters

Notifies which payment flows, if any, are blocked for a user

ScopeBlocked.Inflows
bool

bool:

true, false

Inflows

ScopeBlocked.Outflows
bool

bool:

true, false

Outflows

Id
string

string:

Maximum length is 255 characters

The user ID

{
"ActionCode": 008702,
"ScopeBlocked": {
"Inflows": false,
"Outflows": true
},
"Id": "79386060"
}

View User Blocked Status

GET .../v2.01/ClientId

The ID of your client account

/users/UserId

A Mangopay user's ID

/regulatory
  • View
  • Code
  • Run
  • View
  • Code
  • Run
GET .../users/:UserId/regulatory HTTP/1.1
GET .../users//regulatory HTTP/1.1

The Country Authorizations object

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

The following endpoints are available to access this information:

  • The GET /countries/{country-code}/authorizations endpoint – to view the restrictions for a specific country
  • The GET /countries/authorizations – to view the restrictions of all the countries

For more information regarding the restrictions by country, please refer to the Restrictions by country article.

Parameters

CountryCode
CountryIso

CountryIso:

AD, AE, AF, AG, AI, AL, AM, AO, AQ, AR, AS, AT, AU, AW, AX, AZ, BA, BB, BD, BE, BF, BG, BH, BI, BJ, BL, BM, BN, BO, BQ, BR, BS, BT, BV, BW, BY, BZ, CA, CC, CD, CF, CG, CH, CI, CK, CL, CM, CN, CO, CR, CU, CV, CW, CX, CY, CZ, DE, DJ, DK, DM, DO, DZ, EC, EE, EG, EH, ER, ES, ET, FI, FJ, FK, FM, FO, FR, GA, GB, GD, GE, GF, GG, GH, GI, GL, GM, GN, GP, GQ, GR, GS, GT, GU, GW, GY, HK, HM, HN, HR, HT, HU, ID, IE, IL, IM, IN, IO, IQ, IR, IS, IT, JE, JM, JO, JP, KE, KG, KH, KI, KM, KN, KP, KR, KW, KY, KZ, LA, LB, LC, LI, LK, LR, LS, LT, LU, LV, LY, MA, MC, MD, ME, MF, MG, MH, MK, ML, MM, MN, MO, MP, MQ, MR, MS, MT, MU, MV, MW, MX, MY, MZ, NA, NC, NE, NF, NG, NI, NL, NO, NP, NR, NU, NZ, OM, PA, PE, PF, PG, PH, PK, PL, PM, PN, PR, PS, PT, PW, PY, QA, RE, RO, RS, RU, RW, SA, SB, SC, SD, SE, SG, SH, SI, SJ, SK, SL, SM, SN, SO, SR, SS, ST, SV, SX, SY, SZ, TC, TD, TF, TG, TH, TJ, TK, TL, TM, TN, TO, TR, TT, TV, TW, TZ, UA, UG, UM, US, UY, UZ, VA, VC, VE, VG, VI, VN, VU, WF, WS, YE, YT, ZA, ZM, ZW

A valid ISO 3166-1 alpha-2 format

The code of the country in the ISO 3166-1 alpha-2 format.

CountryName
string

string:

Maximum length is 255 characters

Name of the country

Authorization
CountryAuthorization

CountryAuthorization:

View Sub-parameters

Information about the country’s restrictions.

Authorization.BlockUserCreation
bool

bool:

true, false

Whether or not user creation is possible based on the user’s country of residence.

Authorization.BlockBankAccountCreation
bool

bool:

true, false

Whether or not bank account creation is possible based on the bank’s country of domiciliation.

Authorization.BlockPayout
bool

bool:

true, false

Whether or not payout creation is possible based on the bank’s country of domiciliation.

LastUpdate
timestamp

timestamp

Date and time when at least one of the authorizations has been last updated.

{
"CountryCode": "GB",
"CountryName": "France",
"Authorization": {
"BlockUserCreation": true,
"BlockBankAccountCreation": true,
"BlockPayout": true
},
"LastUpdate": 1463494366
}
Share feedback