Record the signer's consent to electronic signature
curl --request POST \
--url https://api.atlaswork.ai/api/signer/consent \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.atlaswork.ai/api/signer/consent', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.atlaswork.ai/api/signer/consent"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"consentedAt": "2023-11-07T05:31:56Z"
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}signer
Record the signer's consent to electronic signature
Appends participant.consented with the request’s IP and user agent as audit facts (spec §7). Idempotent: a participant who already consented gets their original consent timestamp back. Allowed only when it is the signer’s turn.
POST
/
api
/
signer
/
consent
Record the signer's consent to electronic signature
curl --request POST \
--url https://api.atlaswork.ai/api/signer/consent \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.atlaswork.ai/api/signer/consent', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.atlaswork.ai/api/signer/consent"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"consentedAt": "2023-11-07T05:31:56Z"
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}{
"code": "<string>",
"message": "<string>",
"details": {}
}