Inovpay-API
  1. Transações
Inovpay-API
  • Comece Por Aqui
  • Autenticação
    • Gerar Token
      POST
  • Estabelecimentos
    • Criar Estabelecimento
      POST
    • Listar Estabelecimentos
      GET
    • Listar Estabelecimento ID
      GET
  • Transações
    • Criar Transação Crédito
      POST
    • Criar Transação PIX
      POST
    • Listar Transações
      GET
    • Lista Transação ID
      GET
    • QR Code PIX
      GET
    • Simulate Transações
      POST
  • Antifraude
    • Antifraude 3DS
  1. Transações

Listar Transações

GET
/v1/marketplace/transactions
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/marketplace/transactions' \
--header 'integration-key: {{integration-key}}' \
--header 'x-token: {{x-token}}'
Response Response Example
{
    "total": 0,
    "perPage": 0,
    "page": 0,
    "lastPage": 0,
    "data": [
        {
            "_id": "string",
            "status": "string",
            "amount": 0,
            "original_amount": 0,
            "fees": 0,
            "type": "string",
            "gateway_key": "string",
            "gateway_authorization": "string",
            "card": {
                "brand_name": "string",
                "first4_digits": "string",
                "last4_digits": "string",
                "expiration_month": "string",
                "expiration_year": "string",
                "holder_name": "string",
                "_id": "string"
            },
            "point_of_sale": {
                "type": "string",
                "identification_type": "string"
            },
            "acquirer": {
                "name": "string",
                "key": "string",
                "gateway_key": "string",
                "_id": "string",
                "acquirer_nsu": 0,
                "mid": "string"
            },
            "emv": "string",
            "antifraud": [
                {
                    "analyse_status": "string",
                    "_id": "string",
                    "analyse_required": "string"
                }
            ],
            "created_at": "string",
            "installments": 0,
            "payment_response": {
                "code": null,
                "message": "string",
                "reference": null,
                "authorization_code": null,
                "nsu": null,
                "reason_code": null,
                "_id": "string"
            }
        }
    ]
}

Requisição

Authorization
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
Exemplo:
Authorization: Bearer ********************
Parâmetros Header
integration-key
string 
requerido
Exemplo:
{{integration-key}}
x-token
string 
requerido
Exemplo:
{{x-token}}

Respostas

🟢200OK
application/json
Body
total
integer 
requerido
perPage
integer 
requerido
page
integer 
requerido
lastPage
integer 
requerido
data
array [object {16}] 
requerido
_id
string 
requerido
status
string 
requerido
amount
integer 
requerido
original_amount
integer 
requerido
fees
integer 
requerido
type
string 
requerido
gateway_key
string 
requerido
gateway_authorization
string 
requerido
card
object 
requerido
point_of_sale
object 
requerido
acquirer
object 
requerido
emv
string 
opcional
antifraud
array [object {3}] 
requerido
created_at
string 
requerido
installments
integer 
requerido
payment_response
object 
requerido
Página anterior
Criar Transação PIX
Próxima página
Lista Transação ID
Built with