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)

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)

Sample Response:

1{
2  "status": "success",
3  "data": {}
4}