API - changes -Removal of ‘further_resubmissions_allowed’ key from the ‘get_account_status’ API call

Dear developers,

We are removing the further_resubmissions_allowed attribute from the get_account_status API call. The change will happen in the week beginning 02/11/2020.



Before the change

API call:
{
  "get_account_status": {
    "authentication": {
      "document": {
        "further_resubmissions_allowed": 0,
        "status": "none"
      },
      "identity": {
        "further_resubmissions_allowed": 0,
        "services": {
          "onfido": {
            "documents_supported": [
              "Driving Licence",
              "National Identity Card",
              "Passport",
              "Residence Permit",
              "Visa"
            ],
            "is_country_supported": 1
          }
        },
        "status": "none"
      },
      "needs_verification": [
        "document",
        "identity"
      ]
    },
    "status": [
      ...
      "allow_document_upload",
      ...

After the change

API call:

{
  "get_account_status": {
    "authentication": {
      "document": {
        "status": "none"
      },
      "identity": {
        "services": {
          "onfido": {
            "documents_supported": [
              "Driving Licence",
              "National Identity Card",
              "Passport",
              "Residence Permit",
              "Visa"
            ],
            "is_country_supported": 1
          }
        },
        "status": "none"
      },
      "needs_verification": [
        "document",
        "identity"
      ]
    },
    "status": [
      ...
      "allow_document_upload",
      ...

Please make the necessary changes to your code.

Thank you.

Team Deriv.com
api-support@deriv.com

Sign In or Register to comment.