ImzagerServices

<back to all web services

SignDocument

The following routes are available for this service:
All Verbs/SignDocument/{ClientKey}
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class SignDocumentResponse:
    result: bool = False
    service_success_result: bool = False
    error_mesage: Optional[str] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class SignDocument:
    client_key: Optional[str] = None
    authorization_ı_d: Optional[str] = None
    user_s_s_n: Optional[str] = None
    document_ıd: int = 0
    signer_s_s_n: Optional[str] = None
    signer_e_mail: Optional[str] = None
    sign_message: Optional[str] = None

Python SignDocument DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /SignDocument/{ClientKey} HTTP/1.1 
Host: imzagerservices.eyyubiye.bel.tr 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"ClientKey":"String","AuthorizationID":"String","UserSSN":"String","DocumentId":0,"SignerSSN":"String","SignerEMail":"String","SignMessage":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"Result":false,"ServiceSuccessResult":false,"ErrorMesage":"String"}