RejectSigningRequest
curl --request POST \
--url https://api.mpcvault.com/v1/rejectSigningRequest \
--header 'Content-Type: application/json' \
--header 'x-mtoken: <api-key>' \
--data '
{
"uuid": "<string>"
}
'import requests
url = "https://api.mpcvault.com/v1/rejectSigningRequest"
payload = { "uuid": "<string>" }
headers = {
"x-mtoken": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-mtoken': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({uuid: '<string>'})
};
fetch('https://api.mpcvault.com/v1/rejectSigningRequest', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mpcvault.com/v1/rejectSigningRequest",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'uuid' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-mtoken: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mpcvault.com/v1/rejectSigningRequest"
payload := strings.NewReader("{\n \"uuid\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-mtoken", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mpcvault.com/v1/rejectSigningRequest")
.header("x-mtoken", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"uuid\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mpcvault.com/v1/rejectSigningRequest")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-mtoken"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"uuid\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"error": {
"message": "<string>"
}
}Signing Requests
RejectSigningRequest
Reject a pending signing request.
POST
/
v1
/
rejectSigningRequest
RejectSigningRequest
curl --request POST \
--url https://api.mpcvault.com/v1/rejectSigningRequest \
--header 'Content-Type: application/json' \
--header 'x-mtoken: <api-key>' \
--data '
{
"uuid": "<string>"
}
'import requests
url = "https://api.mpcvault.com/v1/rejectSigningRequest"
payload = { "uuid": "<string>" }
headers = {
"x-mtoken": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-mtoken': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({uuid: '<string>'})
};
fetch('https://api.mpcvault.com/v1/rejectSigningRequest', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.mpcvault.com/v1/rejectSigningRequest",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'uuid' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-mtoken: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.mpcvault.com/v1/rejectSigningRequest"
payload := strings.NewReader("{\n \"uuid\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-mtoken", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.mpcvault.com/v1/rejectSigningRequest")
.header("x-mtoken", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"uuid\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mpcvault.com/v1/rejectSigningRequest")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-mtoken"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"uuid\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"error": {
"message": "<string>"
}
}Rejects a signing request. Once rejected, it cannot be reopened or executed. This action is irreversible.
Authorizations
Your API token. Required for all API requests.
Body
application/json
required:true symbol_value:"bb6f129f-bbe3-4d95-9f33-c32812e3e1c4" comment:uuid is the unique identifier of the signing request.
Response
200 - application/json
Success
- execute_signing_requests_error_code
- service_error_code
Show child attributes
Show child attributes
Was this page helpful?
⌘I