Update Card
POST
/web/v1/slash/connections/{connectionBizId}/cards/update JWTUpdates the properties of an existing card under the specified Slash connection.
Required Headers
| Header | Example Value | Description |
|---|---|---|
| Content-Type | application/json | Request content type |
| Accept | application/json | Expected response type |
| X-Client-Hash | Client device fingerprint | |
| Accept-Language | en, zh, zh-Hant, ja, vi | Response language (default: en) |
| Authorization | Bearer | JWT access token |
| X-Workspace-Id | Target workspace ID |
Request Parameters
| Name | Type | Required | In | Description |
|---|---|---|---|---|
connectionBizId | String | Required | path | Slash connection business ID. Path parameter |
cardId | String | Required | body | The card ID to update. Request body field, must not be blank |
payload | Object | Required | body | Update payload forwarded to the Slash platform. Request body field, must not be null |
Success Response
Bad Request 400
{
"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.