-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Currently our system is storing country as object:
{ "Name": "United States", "UN": "USA", "ISO": "US", "RevenueModel": [ "advertising+micropayments", "advertising+subscriptions", "micropayments+subscriptions" ], "Currency": [ "usd" ] }
But api requires country as string:
{
“ThemeId”: “string”,
“Name”: “string”,
“Website”: “string”,
“SupportEmail”: “string”,
“Country”: "string"
,
“AWSAccessKeyId”: “string”,
“AWSSecretAccessKey”: “string”,
“CloudFrontId”: “string”,
“UserInfo”: {},
“ServerInfo”: {},
“ConfigDefaults”: {}
}
@eistrati Please advice what string from object should be transmit to api?
Options are listed below:
- "Name": "United States",
- "UN": "USA",
- "ISO": "US",