Authentication
signature: <SIGNATURE>Salt Edge RSA SHA-256 callback signature over the exact callback URL and raw request body.
signature-key-version: <SIGNATURE_KEY_VERSION>Certified Salt Edge callback public-key version used for strict signature verification and rotation control.
Parameters
signatureHeader · RequiredSalt Edge RSA SHA-256 callback signature over the exact callback URL and raw request body.
stringFull definition
{ "type": "string", "example": "example" }signature-key-versionHeader · RequiredCertified Salt Edge callback public-key version used for strict signature verification and rotation control.
stringFull definition
{ "type": "string", "example": "example" }Signature-Key-VersionHeader · RequiredSalt Edge callback public-key version; Finance accepts the certified v6 key.
stringFull definition
{ "type": "string", "example": "example" }SignatureHeader · RequiredSalt Edge AIS RSA SHA-256 callback signature over callback URL and raw body.
stringFull definition
{ "type": "string", "example": "example" }
Request body
Required
Exact Salt Edge v6 JSON callback body verified with its RSA signature.
application/json
objectFull definition
{
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/JsonValue"
},
"example": {
"exampleKey": "example"
}
}Responses
200The verified callback was accepted or recognized as an exact replay.
Full definition
{
"$ref": "#/components/schemas/FinancialBankWebhookResultDto"
}{
"accepted": true,
"replay": true
}Schemas
JsonValue
Recursively JSON-safe value used only where the owning contract intentionally allows free-form structured data.
Full definition
{
"oneOf": [
{
"type": "string",
"nullable": true,
"example": "example"
},
{
"type": "number",
"example": 0
},
{
"type": "boolean",
"example": true
},
{
"type": "array",
"items": {
"$ref": "#/components/schemas/JsonValue"
},
"example": [
"example"
]
},
{
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/JsonValue"
},
"example": {
"exampleKey": "example"
}
}
],
"description": "Recursively JSON-safe value used only where the owning contract intentionally allows free-form structured data.",
"example": "example"
}FinancialBankWebhookResultDto
Source-owned Finance PRO representation of financial bank webhook result.
acceptedRequiredTrue after the signed provider callback passes environment, timestamp, body, and replay validation.
booleanFull definition
{ "type": "boolean", "description": "True after the signed provider callback passes environment, timestamp, body, and replay validation.", "example": true }replayRequiredTrue when the callback matches an already accepted immutable receipt and causes no duplicate processing.
booleanFull definition
{ "type": "boolean", "description": "True when the callback matches an already accepted immutable receipt and causes no duplicate processing.", "example": true }
Full definition
{
"type": "object",
"properties": {
"accepted": {
"type": "boolean",
"description": "True after the signed provider callback passes environment, timestamp, body, and replay validation.",
"example": true
},
"replay": {
"type": "boolean",
"description": "True when the callback matches an already accepted immutable receipt and causes no duplicate processing.",
"example": true
}
},
"required": [
"accepted",
"replay"
],
"description": "Source-owned Finance PRO representation of financial bank webhook result.",
"example": {
"accepted": true,
"replay": true
}
}