v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Holidays v2 - Transaction banking (deprecated)

Update holiday (deprecated)

DEPRECATED. Call the new Update holiday endpoint instead.

This endpoint is deprecated starting April 30, 2026, and final removal from both test (EXT) and production environments on October 30, 2026.

Update some holiday information. Only parameters that are passed are updated.

Note: This endpoint is designed for transaction banking. For more information, refer to Calendars and holidays in transaction banking.

put/holidays-core/v2/holiday/{holiday_id}

Path parameters

holiday_idstring required
Example:8675309

Pismo-assigned holiday ID

Request body

namestring required

Holiday name

descriptionstring

Holiday description

metadatastring

Any data object with key/value pairs. No limit on length.

Note: This field must not be used to send Personally Identifiable Information (PII), Payment Card Industry (PCI) data, or any sensitive/regulated information. Metadata fields are intended for operational, non-sensitive data only. For sensitive data, use the specific parameters designed for that purpose. For more information, refer to Get started with Pismo APIs.

Example request

{
  "name": "New Year's Day",
  "description": "Day to party like it's 1999",
  "metadata": "{ \"key\": \"value\"}"
}

Response

Updated holiday

idinteger

Holiday ID

namestring

Holiday name

descriptionstring

Holiday description

metadatastring

Any data object with key/value pairs. No limit on length.

Note: This field must not be used to send Personally Identifiable Information (PII), Payment Card Industry (PCI) data, or any sensitive/regulated information. Metadata fields are intended for operational, non-sensitive data only. For sensitive data, use the specific parameters designed for that purpose. For more information, refer to Get started with Pismo APIs.

Example response

{
  "id": 8675309,
  "name": "New Year's Day",
  "description": "Day to party like it's 1999",
  "metadata": "{ \"key\": \"value\"}"
}