我有一个Json结构,我想使用Nodejs作为请求参数来创建它。我在这里写json格式。
{
"accounts": [
{
"address": {
"street_address": "string",
"locality": "string",
"region": "string",
"country": "string",
"postal_code": "string",
"phone": "string"
},
"admin_user": {
"email_address": "",
"first_name": "test",
"last_name": "team",
"job_title": ""
},
"name": "testAccount",
"plan_id": ",
"website": "",
"reseller_id": "",
"customer_id": "",
"paid_seats": ""
}
]
}
你能帮我吗?
答案 0 :(得分:0)
这是正确的。您只错过了“ plain_id”值中的双引号。
正确:
"name": "testAccount",
"plan_id": "",
"website": "",
"reseller_id": "",
"customer_id": "",
"paid_seats": ""