Transaction type created

This event occurs asynchronously after a transaction type is created.
Generated by: Create transaction type
More information: Transaction types, Processing codes and transaction types, and Payments configuration.

Type: object
Domain: transaction-types
Event: creation
Version: 1

|
transaction_type_id required

Title: Transaction type ID
Description: Unique identifier of transaction type
Type: integer
Example:
101
505
7001

description required

Title: Transaction type description
Description: Transaction type description
Type: string
Example:
Purchase
International Purchase
Purchase Reversal

credit required

Title: Is credit
Description: Indicates if the transaction type is a credit (true) or debit (false) operation.
Type: boolean

posted_transaction required

Title: Posted transaction
Description: Indicates if the transaction is posted on the statement (true) or not (false).
Type: boolean

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Transaction type created",
    "description": "This event occurs asynchronously after a transaction type is created. <br>Generated by: <a href='https://developers.pismo.io/pismo-docs/reference/postsetuptransactiontype' target='_blank'>Create transaction type</a> <br>More information: <a href='https://developers.pismo.io/pismo-docs/docs/transactions-overview#transaction-types' target='_blank'>Transaction types</a>, <a href='https://developers.pismo.io/pismo-docs/docs/processing-codes-and-transaction-types' target='_blank'>Processing codes and transaction types</a>, and <a href='https://developers.pismo.io/pismo-docs/docs/payments-configurations' target='_blank'>Payments configuration</a>.",
    "required": [
        "transaction_type_id",
        "description",
        "credit",
        "posted_transaction"
    ],
    "properties": {
        "transaction_type_id": {
            "type": "integer",
            "title": "Transaction type ID",
            "description": "Unique identifier of transaction type",
            "examples": [
                101,
                505,
                7001
            ]
        },
        "description": {
            "type": "string",
            "title": "Transaction type description",
            "description": "Transaction type description",
            "examples": [
                "Purchase",
                "International Purchase",
                "Purchase Reversal"
            ]
        },
        "credit": {
            "type": "boolean",
            "title": "Is credit",
            "description": "Indicates if the transaction type is a credit (`true`) or debit (`false`) operation."
        },
        "posted_transaction": {
            "type": "boolean",
            "title": "Posted transaction",
            "description": "Indicates if the transaction is posted on the statement (`true`) or not (`false`)."
        }
    }
}