使用docusign API创建新帐户时出现问题

时间:2018-10-31 13:06:48

标签: api new-operator docusignapi account

当我尝试使用API​​创建新帐户时,出现此错误:

{ "error": "internal_server_error", "error_description": "No site id
was found for region: None", "reference_id":
"e2ff6d67-119e-4b04-9325-512047e5baf5" }

我的有效载荷是:

{  "accounts": [  {
        "address": {
        "street_address": "santendar",
        "locality": "santendar",
        "region": "spanish area",
        "country": "ESP",
        "postal_code": "34567",
        "phone": "12345"
      },
       "admin_user": {
        "email_address": "abhistar002@gmail.com",
        "first_name": "test",
        "last_name": "team",
        "job_title": "somejob"
      },
      "name": "testAccount",
      "plan_id": "**********************",
      "website": "example.com",
      "reseller_id": "***********",
      "customer_id": "************",
      "paid_seats": "2"
    }   ] }

曾工作过。我已经使用此API结构创建了许多帐户。

任何建议如何解决此问题?

1 个答案:

答案 0 :(得分:0)

如果您查看此https://developers.docusign.com/esign-rest-api/reference/Accounts/Accounts/create,您会看到呼叫的“地址”部分有些不同,应该看起来像这样:

 "address": {
      "street1": "sample string 1",
      "street2": "sample string 2",
      "city": "sample string 3",
      "state": "sample string 4",
      "zip": "sample string 5",
      "phone": "sample string 6",
      "fax": "sample string 7",
      "country": "sample string 8"
    }