Carouseller
Home
  • šŸš€Getting started
    • Payment glossary
  • Cashier integration
    • Key obtaining
    • Cashier opening
      • iFrame
      • Native version
    • Cashier opening 2.0
      • iFrame
    • Payment processing
    • Webhooks
      • Successful transaction conditions
      • Notification parameters
    • Report request
    • Tracking user's activity in the cashier
    • User reset conditions
    • Signature
  • Payment API
    • API 1.0
      • Key obtaining
      • Deposit
      • Payout
      • Transaction status
    • API 2.0
      • Payment Page Integration
      • Transaction statuses
    • 3DS handler
  • Transaction types
  • Payment methods
  • Test card numbers
Powered by GitBook
On this page
  • Request address
  • Headers
  • Request Parameters
  • Request Example
  • Response Example
  • Transaction statuses
  1. Payment API
  2. API 2.0

Transaction statuses

Request address

https://api.carouseller.com/status/

Headers

{ā€œContent-Type: ā€œapplication/jsonā€}

Request Parameters

Name
Required
Type
Description
Example

order_id

Yes

String

Carouseller order id

1231254123123

external_id

Yes

String

Client side order id

1231254123123

site_id

Yes

Int

Client id provided by support with documentation

24

signature

Yes

String

d9f5713990de5c6e32169dba1f0102f540018975

Request must have either 'order_id' or 'external_id'

Request Example

{
    "site_id": 1,
    "order_id": "173020046562736927738477393445",
    "signature": ""
}

Response Example

{
    "status": 5,
    "type": 1,
    "external_id": "pjOenSOWw5",
    "order_id": "173020046562736927738477393445",
    "track": "fc38c8b46a2a472385f3f117a2aaec98",
    "amount": 300,
    "currency": "EUR"
}

Transaction statuses

ID
Name
Description

1

INITIAL

The initial state of the transaction

2

AWAITING_CONFIRMATION

Awaiting confirmation

3

PROCESSING

Transaction is being processed

4

SUCCESS

Successful transaction

5

DECLINE

Failed transaction

6

ERROR

There is an error with processing the transaction

7

UNKNOWN

There is an error with the transaction yet the details are not clear

PreviousPayment Page IntegrationNext3DS handler

Last updated 7 months ago

Request signature,

see Request signature generating rules
Page cover image