Skip to content

Instantly share code, notes, and snippets.

@defrindr
Created February 10, 2025 11:08
Show Gist options
  • Save defrindr/55c1588ec6ed469a6bd1b9f68fe98a42 to your computer and use it in GitHub Desktop.
Save defrindr/55c1588ec6ed469a6bd1b9f68fe98a42 to your computer and use it in GitHub Desktop.
import requests
import json
url = "https://adminbedcs.demoweb.fun/api/admin/"
payload = json.dumps({
"email": "[email protected]",
"password": "password",
"adminUsername": "adminsri",
"firstName": "admin",
"lastName": "Sri",
"role": "Admin",
"adminId": 1,
"permission": {
"CMS": [
"C",
"R",
"U",
"T",
"D"
],
"Bonus": [
"C",
"R",
"U",
"D",
"T",
"Issue"
],
"Users": [
"R",
"U",
"SR",
"AB",
"T",
"EV",
"UP"
],
"Admins": [
"C",
"R",
"U",
"T"
],
"Reviews": [
"C",
"R",
"U"
],
"KycLabel": [
"C",
"R",
"U"
],
"KpiReport": [
"R"
],
"Affiliates": [
"R",
"C",
"D",
"U",
"T"
],
"Currencies": [
"C",
"R",
"U",
"T"
],
"GameReport": [
"R"
],
"UserReport": [
"R"
],
"UserComment": [
"C",
"R"
],
"ImageGallery": [
"R",
"U",
"D"
],
"Transactions": [
"R"
],
"EmailTemplate": [
"R",
"U",
"TE",
"D",
"C"
],
"DemographReport": [
"R"
],
"BannerManagement": [
"R",
"C",
"U",
"D"
],
"CasinoManagement": [
"C",
"R",
"U",
"T",
"D"
],
"KpiSummaryReport": [
"R"
],
"LivePlayerReport": [
"R"
],
"SiteConfiguration": [
"R",
"U"
],
"TransactionReport": [
"R"
],
"ProviderWiseReport": [
"R"
],
"PaymentProviderReport": [
"R"
],
"PlayerLiabilityReport": [
"R"
],
"PlayerManagementReport": [
"R"
],
"PlayerTransactionReport": [
"R"
]
},
"adminUserId": 10
})
headers = {
'Content-Type': 'application/json',
'Authorization': '••••••'
}
response = requests.request("PUT", url, headers=headers, data=payload)
print(response.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment