Skip to main content
PATCH
/
v1
/
users
/
me
Update Current User
curl --request PATCH \
  --url https://api.aries.com/v1/users/me \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_application": {
    "submit": true
  },
  "plaid_status": "PENDING"
}
'
{
  "account_application": {
    "can_submit": true,
    "id": 123,
    "missing_fields": [
      "<string>"
    ],
    "plaid_link_token": "<string>",
    "status": "CREATED"
  },
  "country": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "email": "<string>",
  "id": 123,
  "plaid_status": "<string>",
  "updated_at": "2023-11-07T05:31:56Z"
}
Account Application Updates:All user account_application data in the request will be merged with existing data. Partial updates to nested fields are supported.After each update, the remaining missing_fields for the application will be returned. Once all missing fields are completed, can_submit will be set to true.To finalize and submit the application, set submit to true in the request body. After submission, the plaid_link_token for identity verification will be available.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
account_application
object
plaid_status
enum<string>

Must be 'PENDING'

Available options:
PENDING

Response

User updated successfully

account_application
object
country
string
created_at
string<date-time>
email
string
id
integer<int64>
plaid_status
string
updated_at
string<date-time>