process SignatureCaptureEvent
ApiScope: payment.signaturerequest.update
API Scope Level: ServiceSubscriberScope
Path Parameters
spiRequestUUID string required
application/json
Request Body required
signedDocumentUrl string
Responses
- 200
- 400
- 401
- 500
OK
application/json
Schema
Example (from schema)
Schema
error object
warnings object[]
requestUUID string
status string
Possible values: [SUCCESS
, FAILURE
]
{
"error": {
"errorCode": "string",
"errorDescription": "string"
},
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
],
"requestUUID": "string",
"status": "SUCCESS"
}
Bad Request
*/*
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string",
"errorDescription": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string",
"warningDescription": "string"
}
]
}
Unauthorized
*/*
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string",
"errorDescription": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string",
"warningDescription": "string"
}
]
}
Internal Server Error
*/*
Schema
Example (from schema)
Schema
errors object[]
warnings object[]
{
"errors": [
{
"errorCode": 0,
"errorTitle": "string",
"errorMessage": "string",
"errorDescription": "string"
}
],
"warnings": [
{
"warningCode": 0,
"warningTitle": "string",
"warningMessage": "string",
"warningDescription": "string"
}
]
}
PUT /kpayment/v1/esign/spiRequests/:spiRequestUUID/process/capture
Request
Request
curl / cURL
curl -L -X PUT '/payment/kpayment/v1/esign/spiRequests/:spiRequestUUID/process/capture' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"signedDocumentUrl": "string"
}'
python / requests
curl -L -X PUT '/payment/kpayment/v1/esign/spiRequests/:spiRequestUUID/process/capture' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"signedDocumentUrl": "string"
}'
go / native
curl -L -X PUT '/payment/kpayment/v1/esign/spiRequests/:spiRequestUUID/process/capture' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"signedDocumentUrl": "string"
}'
nodejs / axios
curl -L -X PUT '/payment/kpayment/v1/esign/spiRequests/:spiRequestUUID/process/capture' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"signedDocumentUrl": "string"
}'
ruby / Net::HTTP
curl -L -X PUT '/payment/kpayment/v1/esign/spiRequests/:spiRequestUUID/process/capture' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"signedDocumentUrl": "string"
}'
csharp / RestSharp
curl -L -X PUT '/payment/kpayment/v1/esign/spiRequests/:spiRequestUUID/process/capture' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"signedDocumentUrl": "string"
}'
php / cURL
curl -L -X PUT '/payment/kpayment/v1/esign/spiRequests/:spiRequestUUID/process/capture' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"signedDocumentUrl": "string"
}'
java / OkHttp
curl -L -X PUT '/payment/kpayment/v1/esign/spiRequests/:spiRequestUUID/process/capture' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"signedDocumentUrl": "string"
}'
powershell / RestMethod
curl -L -X PUT '/payment/kpayment/v1/esign/spiRequests/:spiRequestUUID/process/capture' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"signedDocumentUrl": "string"
}'