Inovpay-API
  1. Estabelecimentos
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. Estabelecimentos

Criar Estabelecimento

POST
/customer
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/customer' \
--header 'Content-Type: application/json' \
--data-raw '{
    "type": "BUSINESS",
    "representative_id": 68,
    "responsible": {
        "email": "gabriel@winnerbi.com.br",
        "document": "41913750833",
        "first_name": "Gabriel",
        "phone": "19971425466",
        "birthdate": "1994-09-06"
    },
    "address": {
        "state": "SP",
        "zip_code": "04576020",
        "street": "Rua George Ohm",
        "neighborhood": "Cidade Monções",
        "city": "São Paulo",
        "complement": "181",
        "number": "300"
    },
    "format": "LTDA",
    "cnae": "6619302",
    "document": "85288889000107",
    "phone_number": "19971425466",
    "email": "gabriel@winnerbi.com.br",
    "birthdate": "2020-05-05",
    "revenue": 10000,
    "first_name": "Winner Business Intelligence LTDA",
    "last_name": "Winner Business"
}'
Response Response Example
{}

Requisição

Authorization
Forneça seu token bearer no cabeçalho
Authorization
ao fazer requisições para recursos protegidos.
Exemplo:
Authorization: Bearer ********************
Parâmetros Bodyapplication/json
type
string 
requerido
responsible
object 
requerido
email
string 
requerido
document
string 
requerido
first_name
string 
requerido
phone
string 
requerido
birthdate
string 
requerido
address
object 
requerido
state
string 
requerido
zip_code
string 
requerido
street
string 
requerido
neighborhood
string 
requerido
city
string 
requerido
complement
string 
requerido
number
string 
requerido
format
string 
requerido
cnae
string 
requerido
document
string 
requerido
phone_number
string 
requerido
email
string 
requerido
birthdate
string 
requerido
revenue
integer 
requerido
first_name
string 
requerido
last_name
string 
requerido
Examples

Respostas

🟢200OK
application/json
Body
object {0}
Página anterior
Gerar Token
Próxima página
Listar Estabelecimentos
Built with