Super TEF
  1. Pagamentos
Super TEF
  • API - SuperTEF
  • Clientes
    • Cadastro
      POST
    • Detalhes
      GET
    • Atualizar
      PUT
    • Lista
      GET
  • P.O.S
    • Cadastro
      POST
    • Atualizar
      PUT
    • Detalhes P.O.S
      GET
    • Lista
      GET
  • Pagamentos
    • Cadastro
      POST
    • Lista
      GET
    • Detalhes
      GET
  1. Pagamentos

Lista

GET
pagamentos
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'pagamentos?cliente_chave&pos_id&order_id&page&data_inicial&data_final'
Response Response Example
{
    "total": 4,
    "per_page": 50,
    "current_page": 1,
    "last_page": 1,
    "to": 4,
    "data": [
        {
            "payment_uniqueid": 10,
            "created_at": "2025-05-29T12:00:57.000000Z",
            "payment_status": 1,
            "payment_message": "Solicitado",
            "payment_order": {
                "pos_id": 43,
                "installment_type": 1,
                "transaction_type": "2",
                "installment_count": 2,
                "amount": "500.00",
                "order_id": "123",
                "description": "Desc"
            },
            "payment_data": {
                "id_payment": null,
                "cardholder_name": null,
                "brand": null,
                "nsu": null,
                "authorization_code": null,
                "authorization_date_time": null
            }
        },
        {
            "payment_uniqueid": 10,
            "created_at": "2025-05-29T12:00:57.000000Z",
            "payment_status": 1,
            "payment_message": "Solicitado",
            "payment_order": {
                "pos_id": 42,
                "installment_type": 1,
                "transaction_type": "1",
                "installment_count": 2,
                "amount": "30.00",
                "order_id": "123",
                "description": "asdfasd"
            },
            "payment_data": {
                "id_payment": null,
                "cardholder_name": null,
                "brand": null,
                "nsu": null,
                "authorization_code": null,
                "authorization_date_time": null
            }
        },
        {
            "payment_uniqueid": 10,
            "created_at": "2025-05-29T12:00:57.000000Z",
            "payment_status": 1,
            "payment_message": "Solicitado",
            "payment_order": {
                "pos_id": 0,
                "installment_type": 1,
                "transaction_type": "1",
                "installment_count": 2,
                "amount": "30.00",
                "order_id": "1231",
                "description": "asdasdf"
            },
            "payment_data": {
                "id_payment": null,
                "cardholder_name": null,
                "brand": null,
                "nsu": null,
                "authorization_code": null,
                "authorization_date_time": null
            }
        },
        {
            "payment_uniqueid": 10,
            "created_at": "2025-05-29T12:00:57.000000Z",
            "payment_status": 1,
            "payment_message": "Solicitado",
            "payment_order": {
                "pos_id": 0,
                "installment_type": 2,
                "transaction_type": "1",
                "installment_count": 2,
                "amount": "100.00",
                "order_id": "123",
                "description": "Teste"
            },
            "payment_data": {
                "id_payment": null,
                "cardholder_name": null,
                "brand": null,
                "nsu": null,
                "authorization_code": null,
                "authorization_date_time": null
            }
        }
    ]
}

Requisição

Authorization
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
Exemplo:
Authorization: Bearer ********************
Parâmetros Query
cliente_chave
string 
opcional
pos_id
integer 
opcional
order_id
string 
opcional
page
integer 
opcional
data_inicial
string 
opcional
Formato: YYYY-MM-DD
data_final
string 
opcional
Formato: YYYY-MM-DD

Respostas

🟢200Success
application/json
Body
total
integer 
requerido
per_page
integer 
requerido
current_page
integer 
requerido
last_page
integer 
requerido
to
integer 
requerido
data
array [object {6}] 
requerido
payment_uniqueid
integer 
requerido
created_at
string 
requerido
payment_status
integer 
requerido
payment_message
string 
requerido
payment_order
object 
requerido
payment_data
object 
requerido
Página anterior
Cadastro
Próxima página
Detalhes
Built with