Update Account

You'll submit the account information to be processed on Wyre. The status field is then going to be updated to either OPEN | PENDING | APPROVED. We provide a note field, which will provide guidance on resolving the issue.

Status

Description

Example

OPEN

Awaiting action from user.

Expired document, awaiting resubmission.

PENDING

Awaiting action from Wyre.

Processing on Wyre.

APPROVED

No further action needed.

Document successfully verified.

Update Account

POST https://api.sendwyre.com/v3/accounts/:accountId

Path Parameters

Name
Type
Description

accountId

string

the ID of the Account you are updating

{
  "id" : "AC-U4BWHGZDG6W",
  "status" : "PENDING",
  "type" : "INDIVIDUAL",
  "country" : "US",
  "createdAt" : 1541789972000,
  "depositAddresses" : {
    "ETH" : "0x98B031783d0efb1E65C4072C6576BaCa0736A912",
    "BTC" : "14CriXWTRoJmQdBzdikw6tEmSuwxMozWWq"
  },
  "totalBalances" : { 
    "BTC" : 1.0000000,
    "ETH" : 0.1000000000000000000
  },
  "availableBalances" : { 
    "BTC" : 1.0000000,
    "ETH" : 0.1000000000000000000
  },
  "profileData" : [ {
    "fieldId" : "individualCellphoneNumber",
    "fieldType" : "CELLPHONE",
    "value" : null,
    "note" : "Must be verified by user.",
    "status" : "OPEN"
  }, {
    "fieldId" : "individualEmail",
    "fieldType" : "EMAIL",
    "value" : "johnnyquest22@yolo.com",
    "note" : "Must be verified by user.",
    "status" : "OPEN"
  }, {
    "fieldId" : "individualLegalName",
    "fieldType" : "STRING",
    "value" : "Johnny Quest",
    "note" : null,
    "status" : "PENDING"
  }, {
    "fieldId" : "individualDateOfBirth",
    "fieldType" : "DATE",
    "value" : null,
    "note" : null,
    "status" : "OPEN"
  }, {
    "fieldId" : "individualSsn",
    "fieldType" : "STRING",
    "value" : null,
    "note" : null,
    "status" : "NULL"
  }, {
    "fieldId" : "individualResidenceAddress",
    "fieldType" : "ADDRESS",
    "value" : {
        "street1": "1 Market St",
        "street2": "Suite 402",
        "city": "San Francisco",
        "state": "CA",
        "postalCode": "94105",
        "country": "US"
    },
    "note" : null,
    "status" : "PENDING"
  }, {
    "fieldId" : "individualGovernmentId",
    "fieldType" : "DOCUMENT",
    "value" : [],
    "note" : null,
    "status" : "OPEN"
  }, {
    "fieldId" : "individualSourceOfFunds",
    "fieldType" : "PAYMENT_METHOD",
    "value" : null,
    "note" : "Payment method not yet submitted",
    "status" : "OPEN"
  } ]
}

Examples

{
  "profileFields": [{
    "fieldId": "individualLegalName",
    "value": "Johnny Quest"
  }, {
    "fieldId": "individualCellphoneNumber",
    "value": "+1 715-111-2222"
  }, {
    "fieldId": "individualEmail",
    "value": "lol@bananaphone.com"
  }, {
    "fieldId": "individualDateOfBirth",
    "value": "1990-09-24"
  }, {
    "fieldId": "individualResidenceAddress",
    "value": {
        "street1": "1 Market St",
        "street2": "Suite 420",
        "city": "San Francisco",
        "state": "CA",
        "postalCode": "94105",
        "country": "US"
      }
  }
  ]
}

Last updated

Was this helpful?