Signature Service
Signature Controller
Header parameters
api-keyanyRequired
apiKeyValue
Body
This model represents the signature
base-64-imagestringRequiredExample:
a base64EncodedImage
createdstringRequired
The date and time the request added to the system
transaction-idinteger · int32RequiredExample:
1
Responses
200
OK
*/*
201
Created
401
Unauthorized
403
Forbidden
404
Not Found
post
POST //rest/v2/signature HTTP/1.1
Host: gateway-sb.clearent.net
Content-Type: application/json
Accept: */*
Content-Length: 76
{
"base-64-image": "a base64EncodedImage",
"created": "text",
"transaction-id": 1
}
{
"base-64-image": "a base64EncodedImage",
"created": "text",
"transaction-id": 1
}
Path parameters
transactionIdanyOptional
Use the transaction id provided in the original POST
Header parameters
api-keyanyRequired
apiKeyValue
Responses
200
OK
401
Unauthorized
403
Forbidden
404
Not Found
get
GET //rest/v2/signature/{transactionId} HTTP/1.1
Host: gateway-sb.clearent.net
Accept: */*
<?xml version="1.0"?>
<object>
<base-64-image>a base64EncodedImage</base-64-image>
<created>text</created>
<transaction-id>1</transaction-id>
</object>
Was this helpful?