JobSign ======= Quick Reference --------------- .. list-table:: :header-rows: 1 :widths: 10 40 50 * - Method - Endpoint - Description * - GET - /api/e-sign/{jobDisplayId}/{bookingKey} - * - GET - /api/e-sign/result - .. _get-apie-signjobdisplayidbookingkey: 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:** .. tabs:: .. tab:: Python .. code-block:: python 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) .. tab:: CLI .. code-block:: bash ab api raw get /api/e-sign/{jobDisplayId}/{bookingKey} \ jobDisplayId=2000000 \ bookingKey=example-value .. tab:: curl .. code-block:: bash curl -X GET \ -H 'Authorization: Bearer YOUR_API_TOKEN' \ 'https://api.abconnect.co/api/e-sign/2000000/example-value' **Sample Response:** .. toggle:: .. code-block:: json :linenos: { "status": "success", "data": {} } ---- .. _get-apie-signresult: GET /api/e-sign/result ~~~~~~~~~~~~~~~~~~~~~~ **Parameters:** *Query Parameters:* - `envelope` (string, query): No description available - `event` (string, query): No description available **Example Request:** .. tabs:: .. tab:: Python .. code-block:: python 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) .. tab:: CLI .. code-block:: bash ab api raw get /api/e-sign/result .. tab:: curl .. code-block:: bash curl -X GET \ -H 'Authorization: Bearer YOUR_API_TOKEN' \ 'https://api.abconnect.co/api/e-sign/result' **Sample Response:** .. toggle:: .. code-block:: json :linenos: { "status": "success", "data": {} }