v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBProgram transaction types
Create program transaction type
A program transaction type is used to associate a transaction type with a transaction category. It can also be used to set the charge order. For more information, refer to Using configurable entities.
Note: Only debit transactions and transactions that impact the statements can be used to create program transaction types. Use the List transaction types endpoint to see if a transaction type is a debit (credit = false) and if it impacts the statement (posted_transaction = true).
post/v1/programs/{programId}/program-transaction-types
Path parameters
programIdinteger required
Example:6912345
Program ID
Request body
Example request
{
"transaction_type_id": 101,
"transaction_category_id": 1237456,
"charge_order": 2
}Response
Created
Example response
{
"program_transaction_type_id": 156781,
"transaction_type_id": 101,
"transaction_category_id": 1237456,
"charge_order": 2
}