Sign transfer
PUT https://wallet.paysera.com/transfer/rest/v1/transfers/{id}/sign
Sign transfer with electronic signature. The transfer must be in NEW or PREPARED status to be signed.
Authorization​
This endpoint requires MAC (Message Authentication Code) authentication.
Authorization Header Format:
Authorization: MAC id="CLIENT_ID", ts="TIMESTAMP", nonce="RANDOM_STRING", mac="MAC_HASH", ext="body_hash=BODY_HASH"
Example:
Authorization: MAC id="a9b8c7d6e5f4g3h2", ts="1234567890", nonce="xyz123abc456def", mac="dGhpcyBpcyBhIHJhbmRvbSBtYWMgaGFzaCB2YWx1ZQ==", ext="body_hash=cmFuZG9tQm9keUhhc2hWYWx1ZQ%3D%3D"
For more details, see the Authentication section.
Parameters​
Path Parameters​
| Name | Type | Required | Description |
|---|---|---|---|
id | integer | ✓ | Transfer identifier |
Request Body​
| Field | Type | Required | Description |
|---|---|---|---|
signature | string | Electronic signature |
Example​
Request​
PUT https://wallet.paysera.com/transfer/rest/v1/transfers/{id}/sign
Content-Type: application/json
Authorization: MAC id="CLIENT_ID", ts="TIMESTAMP", nonce="RANDOM_STRING", mac="MAC_HASH", ext="body_hash=BODY_HASH"
{
"signature": "digital_signature_string"
}
Response​
{
"id": 12345678,
"hash": "abc123def456",
"status": "signed",
"signed_at": 1729425800,
"signatures": [
{
"id": 111,
"user_id": 12345,
"display_name": "John Smith",
"signature_level": "A",
"signed_at": 1729425800
}
]
}
AUTHORIZATION: HTTP
REQUEST
Base URL
https://wallet.paysera.com
Body REQUIRED
{
"signature": "digital_signature_string"
}
RESPONSE
Transfer signed successfully
{
"id": 12345678,
"hash": "abc123def456",
"status": "signed",
"signed_at": 1729425800,
"signatures": [
{
"id": 111,
"user_id": 12345,
"display_name": "John Smith",
"signature_level": "A",
"signed_at": 1729425800
}
]
}