Update Virtual Account
POST
/web/v1/slash/connections/{connectionBizId}/virtual-accounts/updateJWTUpdates the properties of an existing virtual account.
Authentication
Requires a valid JWT token. Portal access: system, tenant.
Request Parameters
| Name | Type | Required | In | Description |
|---|---|---|---|---|
connectionBizId | String | Yes | path | Slash connection business ID. |
virtualAccountId | String | Yes | body | The virtual account ID to update. |
payload | Object | Yes | body | Update payload forwarded to the Slash platform. |
Success Response
Bad Request400
{
"code": "4000",
"message": "virtualAccountId must not be blank"
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 400 | 4000 | Validation error (missing virtualAccountId or payload) |
| 401 | 4010 | Invalid or expired JWT token |
| 404 | 4040 | Virtual account or connection not found |
Notes
- The
virtualAccountIdandpayloadfields are validated server-side. Both are required. - The
payloadobject is forwarded to the Slash platform as-is.