JobSign
Quick Reference
Method |
Endpoint |
Description |
|---|---|---|
GET |
/api/e-sign/{jobDisplayId}/{bookingKey} |
|
GET |
/api/e-sign/result |
GET /api/e-sign/{jobDisplayId}/{bookingKey}
Parameters:
Path Parameters:
jobDisplayId (string, path) (required): No description available
bookingKey (string, path) (required): No description available
Example Request:
from ABConnect import ABConnectAPI
# Initialize the API client
api = ABConnectAPI()
# Make the API call
response = api.raw.get(
"/api/e-sign/{jobDisplayId}/{bookingKey}"
,
jobDisplayId="2000000"
,
bookingKey="example-value"
)
# Process the response
print(response)
ab api raw get /api/e-sign/{jobDisplayId}/{bookingKey} \
jobDisplayId=2000000 \
bookingKey=example-value
curl -X GET \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/e-sign/2000000/example-value'
Sample Response:
1{
2 "status": "success",
3 "data": {}
4}
GET /api/e-sign/result
Parameters:
Query Parameters:
envelope (string, query): No description available
event (string, query): No description available
Example Request:
from ABConnect import ABConnectAPI
# Initialize the API client
api = ABConnectAPI()
# Make the API call
response = api.raw.get(
"/api/e-sign/result"
)
# Process the response
print(response)
ab api raw get /api/e-sign/result
curl -X GET \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/e-sign/result'
Sample Response:
1{
2 "status": "success",
3 "data": {}
4}