# Get Transaction Statuses Retrieve all available transaction statuses. Use the returned IDs for informational purposes. ## 📋 Common Statuses - processing: Transaction is being processed - done: Transaction completed successfully - failed: Transaction processing failed Endpoint: GET /transaction-statuses Version: 1.0.0 Security: bearerAuth ## Response 200 fields (application/json): - `success` (boolean) Example: true - `data` (array) - `data.id` (string) Example: "550e8400-e29b-41d4-a716-446655440000" - `data.name` (string) Example: "pending" - `data.description` (string) Example: "Transaction is pending processing" ## Response 401 fields (application/json): - `success` (boolean) - `error` (string) Example: "Invalid request" - `message` (string) Example: "The provided data is invalid" - `details` (object) Additional error details Example: {"field":"amount","code":"INVALID_VALUE"} ## Response 500 fields (application/json): - `success` (boolean) - `error` (string) Example: "Invalid request" - `message` (string) Example: "The provided data is invalid" - `details` (object) Additional error details Example: {"field":"amount","code":"INVALID_VALUE"}