Email
Send and manage email communications related to jobs, quotes, and customer notifications.
Quick Reference
Method |
Endpoint |
Description |
|---|---|---|
POST |
/api/email/{jobDisplayId}/labelrequest |
POST /api/email/{jobDisplayId}/labelrequest
Parameters:
Path Parameters:
jobDisplayId (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.post(
"/api/email/{jobDisplayId}/labelrequest"
,
jobDisplayId="2000000"
)
# Process the response
print(response)
ab api raw post /api/email/{jobDisplayId}/labelrequest \
jobDisplayId=2000000
curl -X POST \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
-H 'Content-Type: application/json' \
'https://api.abconnect.co/api/email/2000000/labelrequest'
Sample Response:
1{
2 "id": "789e0123-e89b-12d3-a456-426614174002",
3 "status": "created",
4 "message": "Resource created successfully"
5}