Get Markup Room Details by ID
To retrieve the Markup Room data based on its ID, you can use the following API endpoint:
Endpoint: GET /esign/create-markup-room/{id}
Replace {id}
with the actual ID of the Markup Room you want to retrieve.
Example Request
curl -X GET
-H "Authorization: Bearer <access_token>"
https://api.example.com/esign/create-markup-room/{id}
or
const axios = require("axios");
const config = {
method: "get",
url: "https://public-api.enotarylog.com/esign/create-markup-room/:id",
headers: {
Authorization: "Bearer <accessToken>",
},
};
axios(config)
.then(function (response) {
// Handle the API response here
})
.catch(function (error) {
// Handle any errors here
});
Replace <access_token>
with your API access token and {id}
with the actual ID of the Markup Room.
Handling the Response
Upon a successful request, you will receive a response containing the Markup Room data, including the configuration, participants, and documents associated with the Markup Room.
Example Response:
{
"config": {
"idv": {
"kba": false,
"credentialAnalysis": false
},
"authentication": {
"personalPassword": false,
"twoFactor": false
},
"documents": [
"8d976a23-b865-4fcd-9165-ddc0aedaf614"
],
"participants": [
{
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@gmail.com"
}
]
}
}
Additional Resources
For more information about the eSign API, visit the official documentation.
If you need further assistance or have questions, feel free to reach out to our support team.