v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBProcessing codes
Create processing code
Create a processing code for an organization.
Processing codes identify financial operations on the Pismo platform. For example, 00 is a purchase, 01 is a withdrawal, and so on.
Processing codes need to be mapped to transaction types to create a transaction flow.
This endpoint creates an AUTHORIZATION type processing code and generates a Orgs operation created event.
Notes:
- The prefix PSM is reserved at Pismo platform, customers are not allowed to use this prefix when creating custom processing codes . Not all standard processing codes have the PSMprefix. There are codes created before this standard and are kept for backward compatibility. New ones, however, will always have this prefix.
- On the Pismo platform, 2-digit processing codes are reserved and used only for network processing. Because of this, customers are not allowed to have 2-digit custom processing codes.
- When a new standard processing code is created, it is replicated and configured to all platform organizations, no action is required on your part.
- This endpoint generates a Orgs operation created event.
For more information, refer to <a href="https://developers.pismo.io/pismo-docs/docs/processing-codes-and-transaction-types">Processing codes</a>.
post/orgs-operation/v1/processing-codes
Request body
Example request
{
"processing_code": "I87654",
"balance_impact": 1,
"reversal_processing_code": "578739",
"reversal_description": "Reversal description",
"partial_reversal_processing_code": "578739",
"partial_reversal_description": "Partial reversal description",
"tags": [
"INDIA"
],
"translations": [
{
"language": "en-US"
}
]
}Response
Processing code sucessfully created
Example response
{
"processing_code": "99066",
"reversal_processing_code": "578739",
"partial_reversal_processing_code": "578739",
"status": "PENDING"
}