AML
Country Data
Crypto
- Private
- Public
Customer
- 2FA
- AccessControl
- Active Session
- Credentials
- Customer
- Organization
IPG
- IPG Backoffice APIs
- IPG Payment APIs
KYB
- Company
- EIN Verification
- IBAN Verification
- NIF Verification
- Product
- System
- TIN Verification
- VAT Verification
KYC
PEPS
- Default
- GETGet get profile
Smart Contract
- Global Settings
- Rules
- Smart Contract
Wallet
- Admin
- Allowed Operation
- Assets
- Currency
- Currency Pairs
- Dashboard
- Fee
- Limit
- Misc
- Operation Address
- Operation Destination
- Order
- Transactions
- Wallets
AccessControl
Get Access Control
POST
/
getAccessControl
Copy
curl --request POST \
--url https://gateway.varchev.com/customer/getAccessControl \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenantId: <tenantid>' \
--data '{
"userId": "<string>",
"application": "b2b_wallet"
}'
Copy
[
{
"userId": "<string>",
"groupId": "<string>",
"groupName": "<string>",
"tenantId": "<string>",
"roles": [
{
"componentId": "<string>",
"componentName": "<string>",
"accessRight": "read",
"application": "b2b_wallet"
}
]
}
]
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Headers
Tenant/Owner id
Body
application/json
Response
200
application/json
Get Access Control Response
The response is of type object[]
.
Copy
curl --request POST \
--url https://gateway.varchev.com/customer/getAccessControl \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'tenantId: <tenantid>' \
--data '{
"userId": "<string>",
"application": "b2b_wallet"
}'
Copy
[
{
"userId": "<string>",
"groupId": "<string>",
"groupName": "<string>",
"tenantId": "<string>",
"roles": [
{
"componentId": "<string>",
"componentName": "<string>",
"accessRight": "read",
"application": "b2b_wallet"
}
]
}
]
Assistant
Responses are generated using AI and may contain mistakes.