FictorPay
  • Introdução
  • Setup
    • Login
    • Webhooks
  • Estrutura
    • Conta
    • Saldo
  • Transacional
    • QR Code Estático
    • PIX out
  • Referências de API
    • Account
    • Auth
    • Partner
    • Pix
Powered by GitBook
On this page
  1. Referências de API

Auth

Last updated 1 year ago

  • POSTPartner impersonate user
  • POSTPartner sign in

Partner sign in

post

Partner sign in

Header parameters
authorizationstringRequired

basic authorization client_key:client_secret

Responses
200
OK
application/json
post
POST /mobile-bff/v1/auth/partner/token/ HTTP/1.1
Host: 
authorization: text
Accept: */*
200

OK

{
  "access_token": "text",
  "expiration": 1,
  "refresh_token": "text",
  "type": "text"
}

Partner impersonate user

post

Partner impersonate user

Header parameters
authorizationstringRequired

authorization

Body
customer_idstringRequired
user_idstringRequired
Responses
200
OK
application/json
post
POST /mobile-bff/v1/auth/partner/impersonate/ HTTP/1.1
Host: 
authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 39

{
  "customer_id": "text",
  "user_id": "text"
}
200

OK

{
  "access_token": "text",
  "expiration": 1,
  "refresh_token": "text",
  "type": "text"
}