Update Card
POST
/web/v1/slash/connections/{connectionBizId}/cards/updateJWTUpdates the properties of an existing card under the specified Slash connection.
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. |
cardId | String | Yes | body | The card ID to update. |
payload | Object | Yes | body | Update payload forwarded to the Slash platform. |
Success Response
Bad Request400
{
"code": "4000",
"message": "cardId must not be blank"
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 400 | 4000 | Validation error (missing cardId or payload) |
| 401 | 4010 | Invalid or expired JWT token |
| 404 | 4040 | Card or connection not found |
Notes
- The
cardIdandpayloadfields are validated server-side. Both are required. - The
payloadobject is forwarded to the Slash platform as-is.