Create Card
POST
/web/v1/slash/connections/{connectionBizId}/cardsJWTCreates a new card under the specified Slash connection. The request body is passed through to the Slash platform.
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. |
request | Object | Yes | body | Card creation payload. Structure depends on the Slash platform API. |
Success Response
Unauthorized401
{
"code": "4010",
"message": "Invalid or expired JWT token"
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 401 | 4010 | Invalid or expired JWT token |
| 404 | 4040 | Connection not found |
| 400 | 4000 | Invalid request body |
Notes
- Returns HTTP 201 on success.
- The request body is forwarded to the Slash platform as-is. Refer to Slash API documentation for the expected payload structure.