JobIntacct
Quick Reference
Method |
Endpoint |
Description |
|---|---|---|
GET |
/api/jobintacct/{jobDisplayId} |
|
POST |
/api/jobintacct/{jobDisplayId} |
|
POST |
/api/jobintacct/{jobDisplayId}/draft |
|
DELETE |
/api/jobintacct/{jobDisplayId}/{franchiseeId} |
|
POST |
/api/jobintacct/{jobDisplayId}/applyRebate |
GET /api/jobintacct/{jobDisplayId}
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.get(
"/api/jobintacct/{jobDisplayId}"
,
jobDisplayId="2000000"
)
# Process the response
print(response)
ab api raw get /api/jobintacct/{jobDisplayId} \
jobDisplayId=2000000
curl -X GET \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/jobintacct/2000000'
Sample Response:
1{
2 "status": "success",
3 "data": {}
4}
POST /api/jobintacct/{jobDisplayId}
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/jobintacct/{jobDisplayId}"
,
jobDisplayId="2000000"
,
data=
{
"example": "data"
}
)
# Process the response
print(response)
ab api raw post /api/jobintacct/{jobDisplayId} \
jobDisplayId=2000000
curl -X POST \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"example": "data"
}' \
'https://api.abconnect.co/api/jobintacct/2000000'
Sample Response:
1{
2 "id": "789e0123-e89b-12d3-a456-426614174002",
3 "status": "created",
4 "message": "Resource created successfully"
5}
POST /api/jobintacct/{jobDisplayId}/draft
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/jobintacct/{jobDisplayId}/draft"
,
jobDisplayId="2000000"
,
data=
{
"example": "data"
}
)
# Process the response
print(response)
ab api raw post /api/jobintacct/{jobDisplayId}/draft \
jobDisplayId=2000000
curl -X POST \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"example": "data"
}' \
'https://api.abconnect.co/api/jobintacct/2000000/draft'
Sample Response:
1{
2 "id": "789e0123-e89b-12d3-a456-426614174002",
3 "status": "created",
4 "message": "Resource created successfully"
5}
DELETE /api/jobintacct/{jobDisplayId}/{franchiseeId}
Parameters:
Path Parameters:
jobDisplayId (string, path) (required): No description available
franchiseeId (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.delete(
"/api/jobintacct/{jobDisplayId}/{franchiseeId}"
,
jobDisplayId="2000000"
,
franchiseeId="789e0123-e89b-12d3-a456-426614174002"
)
# Process the response
print(response)
ab api raw delete /api/jobintacct/{jobDisplayId}/{franchiseeId} \
jobDisplayId=2000000 \
franchiseeId=789e0123-e89b-12d3-a456-426614174002
curl -X DELETE \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/jobintacct/2000000/789e0123-e89b-12d3-a456-426614174002'
Sample Response:
1{
2 "status": "success",
3 "message": "Resource deleted successfully"
4}
POST /api/jobintacct/{jobDisplayId}/applyRebate
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/jobintacct/{jobDisplayId}/applyRebate"
,
jobDisplayId="2000000"
,
data=
{
"example": "data"
}
)
# Process the response
print(response)
ab api raw post /api/jobintacct/{jobDisplayId}/applyRebate \
jobDisplayId=2000000
curl -X POST \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"example": "data"
}' \
'https://api.abconnect.co/api/jobintacct/2000000/applyRebate'
Sample Response:
1{
2 "id": "789e0123-e89b-12d3-a456-426614174002",
3 "status": "created",
4 "message": "Resource created successfully"
5}