Signature Service

Signature Controller

Post a transaction signature

post
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
*/*
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
}

Get a transaction signature

get
Path parameters
transactionIdanyOptional

Use the transaction id provided in the original POST

Header parameters
api-keyanyRequired

apiKeyValue

Responses
200
OK
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?