JobForm ======= Quick Reference --------------- .. list-table:: :header-rows: 1 :widths: 10 40 50 * - Method - Endpoint - Description * - GET - /api/job/{jobDisplayId}/form/shipments - * - GET - /api/job/{jobDisplayId}/form/{formid} - .. _get-apijobjobdisplayidformshipments: GET /api/job/{jobDisplayId}/form/shipments ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ **Parameters:** *Path Parameters:* - `jobDisplayId` (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/job/{jobDisplayId}/form/shipments" , jobDisplayId="2000000" ) # Process the response print(response) .. tab:: CLI .. code-block:: bash ab api raw get /api/job/{jobDisplayId}/form/shipments \ jobDisplayId=2000000 .. tab:: curl .. code-block:: bash curl -X GET \ -H 'Authorization: Bearer YOUR_API_TOKEN' \ 'https://api.abconnect.co/api/job/2000000/form/shipments' **Sample Response:** .. toggle:: .. code-block:: json :linenos: [] ---- .. _get-apijobjobdisplayidformformid: GET /api/job/{jobDisplayId}/form/{formid} ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ **Parameters:** *Path Parameters:* - `formId` (string, path) *(required)*: No description available - `jobDisplayId` (string, path) *(required)*: No description available *Query Parameters:* - `type` (string, query): No description available - `shipmentPlanID` (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/job/{jobDisplayId}/form/{formid}" , formId="789e0123-e89b-12d3-a456-426614174002" , jobDisplayId="2000000" ) # Process the response print(response) .. tab:: CLI .. code-block:: bash ab api raw get /api/job/{jobDisplayId}/form/{formid} \ formId=789e0123-e89b-12d3-a456-426614174002 \ jobDisplayId=2000000 .. tab:: curl .. code-block:: bash curl -X GET \ -H 'Authorization: Bearer YOUR_API_TOKEN' \ 'https://api.abconnect.co/api/job/2000000/form/{formid}' **Sample Response:** .. toggle:: .. code-block:: json :linenos: { "status": "success", "data": {} }