ENVIO DE BOLETOS POR E-MAIL

Endpoint utilizado:

Tipo de Operação: GET 

/Orders/BoletoPayments/{paymentToken}/email

Utilize este método para enviar boleto por e-mail.

Dica: Caso o estabelecimento deseje o envio automático do boleto por  e-mail , o mesmo deverá habilitar na tela de configuração/aba boleto a opção de envio de boleto por e-mail.

HEADER REQUEST:

BODY:

BODY REQUEST MODELO:

{

  "mailTo": [

    "string"

  ]

}

Status do boleto (paymentStatus) ao finalizar a requisição:

Indefinido - 0
Pago - 1
Em aberto - 2

Visualizado - 3

Cancelado - 5

Vencido - 9

Baixa - 6

Aguardando registro - 11

BODY RESPONSE MODELO:

{

  "payment": {

    "paymentStatus": 0,

    "boleto": {

      "amount": 0,

      "expirationDate": "2020-09-11T12:59:26.697Z",

      "boletoNumber": "string",

      "digitableLine": "string",

      "boletoInstruction": []

    },

    "received": [

      {

        "amount": 0,

        "processedDate": "2020-09-11T12:59:26.697Z",

        "creditDate": "2020-09-11T12:59:26.697Z"

      }

    ],

    "paymentToken": "string",

    "recurrencePlan": {

      "merchantPlanId": "string",

      "name": "string",

      "description": "string",

      "interval": "string",

      "amount": 0,

      "created": "2020-09-11T12:59:26.698Z",

      "active": true

    },

    "customer": {

      "tag": "string",

      "name": "string",

      "identity": "string",

      "identityType": "string",

      "email": "string",

      "birthdate": "string",

      "address": {

        "country": "string",

        "zipCode": "string",

        "number": "string",

        "street": "string",

        "complement": "string",

        "city": "string",

        "state": "string",

        "neighborhood": "string"

      }

    },

    "amount": 0

  },

  "merchantOrderId": "string"

}