Bank slip issuance registered
This event occurs when a bank slip is registered on the Pismo platform. The bank slip issue endpoint generates this event.
Type: object
Domain: integrated-payments
Event: bankslip_issue_register
Version: 1
amount required
Title: Amount
Description: Bank slip amount
Type: number
Example:
100.0
due_date required
Title: Due date
Description: Bank slip due date
Type: string
Format: date-time
Example:
2023-01-01T10:10:00Z
over_due_date required
Title: Over due date
Description: Bank slip over due date
Type: string
Format: date-time
Example:
2023-01-01T10:10:00Z
minimum_amount required
Title: Minimum amount
Description: Minimum amount accepted on payment
Type: number
Example:
100.0
maximum_amount required
Title: Maximum amount
Description: Maximum amount accepted on payment
Type: number
Example:
100.0
description required
Title: Description
Description: Additional information related to bank slip
Type: string
Example:
description can include any additional information related to the bank slip
pix_key required
Title: Pix key
Description: PIX key that can be used to pay bank slip
Type: string
Example:
[email protected]
instructions required
Title: Instructions object
Description: Additional Instructions of bank slip related to taxes and discount
Type: objectfine
Title: Fine
Description: Amount of the bank slip fine
Type: number
Example:
1.0
interest
Title: Interest
Description: Bank slip interest value
Type: number
Example:
5.0
discount
Title: Discount object
Description: Discount value and due date applied to the banks slip
Type: objecttype
Title: Type
Description: Discount type
Type: string
Must be one of the following:
FIXED
Example:
FIXED
amount
Title: Amount
Description: Discount amount
Type: number
Example:
10.0
deadline
Title: Deadline
Description: Deadline of discount value applied to the bank slip
Type: string
Format: date-time
Example:
10.0
debtor
Title: Debtor object
Description: Personal information
Type: objectname required
Title: Name
Description: Name
Type: string
Example:
Debtor's Name
document_number required
Title: Document Number
Description: Debtor's Document Number
Type: string
Example:
9999099999
zipcode
Title: Zip code
Description: Zip code
Type: string
Example:
00000350
state
Title: State
Description: State
Type: string
Example:
state
city
Title: City
Description: City
Type: string
Example:
city
neighborhood
Title: Neighborhood
Description: Neighborhood
Type: string
Example:
neighborhood
street
Title: Street
Description: Street name
Type: string
Example:
street
number
Title: Number
Description: Street number
Type: string
Example:
1009
complement
Title: Complement
Description: Additional address
Type: string
Example:
additional address
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"title": "Bank slip issuance registered",
"description": "This event occurs when a bank slip is registered on the Pismo platform. The [bank slip issue](https://developers.pismo.io/pismo-docs/reference/post-integrated-payments-api-v1-bankslips-issue) endpoint generates this event.",
"required": [
"amount",
"due_date",
"over_due_date",
"minimum_amount",
"maximum_amount",
"description",
"pix_key",
"instructions"
],
"optional": [
"debtor"
],
"properties": {
"amount": {
"title": "Amount",
"type": "number",
"description": "Bank slip amount",
"examples": [
100.0
]
},
"due_date": {
"title": "Due date",
"type": "string",
"format": "date-time",
"description": "Bank slip due date",
"examples": [
"2023-01-01T10:10:00Z"
]
},
"over_due_date": {
"title": "Over due date",
"type": "string",
"format": "date-time",
"description": "Bank slip over due date",
"examples": [
"2023-01-01T10:10:00Z"
]
},
"minimum_amount": {
"title": "Minimum amount",
"type": "number",
"description": "Minimum amount accepted on payment",
"examples": [
100.0
]
},
"maximum_amount": {
"title": "Maximum amount",
"type": "number",
"description": "Maximum amount accepted on payment",
"examples": [
100.0
]
},
"description": {
"title": "Description",
"type": "string",
"description": "Additional information related to bank slip",
"examples": [
"description can include any additional information related to the bank slip"
]
},
"pix_key": {
"title": "Pix key",
"type": "string",
"description": "PIX key that can be used to pay bank slip",
"examples": [
"[email protected]"
]
},
"instructions": {
"type": "object",
"title": "Instructions object",
"description": "Additional Instructions of bank slip related to taxes and discount",
"properties": {
"fine": {
"type": "number",
"title": "Fine",
"description": "Amount of the bank slip fine",
"examples": [
1.0
]
},
"interest": {
"type": "number",
"title": "Interest",
"description": "Bank slip interest value",
"examples": [
5.0
]
},
"discount": {
"type": "object",
"title": "Discount object",
"description": "Discount value and due date applied to the banks slip",
"properties": {
"type": {
"type": "string",
"title": "Type",
"description": "Discount type",
"enum": [
"FIXED"
],
"examples": [
"FIXED"
]
},
"amount": {
"type": "number",
"title": "Amount",
"description": "Discount amount",
"examples": [
10.0
]
},
"deadline": {
"type": "string",
"format": "date-time",
"title": "Deadline",
"description": "Deadline of discount value applied to the bank slip",
"examples": [
10.0
]
}
}
}
}
},
"debtor": {
"type": "object",
"title": "Debtor object",
"description": "Personal information",
"required": [
"name",
"document_number"
],
"properties": {
"name": {
"type": "string",
"title": "Name",
"description": "Name",
"examples": [
"Debtor's Name"
]
},
"document_number": {
"type": "string",
"title": "Document Number",
"description": "Debtor's Document Number",
"examples": [
"9999099999"
]
},
"zipcode": {
"type": "string",
"title": "Zip code",
"description": "Zip code",
"examples": [
"00000350"
]
},
"state": {
"type": "string",
"title": "State",
"description": "State",
"examples": [
"state"
]
},
"city": {
"type": "string",
"title": "City",
"description": "City",
"examples": [
"city"
]
},
"neighborhood": {
"type": "string",
"title": "Neighborhood",
"description": "Neighborhood",
"examples": [
"neighborhood"
]
},
"street": {
"type": "string",
"title": "Street",
"description": "Street name",
"examples": [
"street"
]
},
"number": {
"type": "string",
"title": "Number",
"description": "Street number",
"examples": [
"1009"
]
},
"complement": {
"type": "string",
"title": "Complement",
"description": "Additional address",
"examples": [
"additional address"
]
}
}
}
}
}
{
"amount": 100.0,
"due_date": "2023-01-01T10:10:00Z",
"over_due_date": "2023-01-01T10:10:00Z",
"minimum_amount": 100.0,
"maximum_amount": 100.0,
"description": "description can include any additional information related to the bank slip",
"pix_key": "[email protected]",
"instructions": {
"fine": 1.0,
"interest": 5.0,
"discount": {
"type": "FIXED",
"amount": 10.0,
"deadline": 10.0
}
},
"debtor": {
"name": "Debtor's Name",
"document_number": "9999099999",
"zipcode": "00000350",
"state": "state",
"city": "city",
"neighborhood": "neighborhood",
"street": "street",
"number": "1009",
"complement": "additional address"
}
}
Updated 20 days ago