JobRfq
Quick Reference
Method |
Endpoint |
Description |
|---|---|---|
GET |
/api/job/{jobDisplayId}/rfq |
|
GET |
/api/job/{jobDisplayId}/rfq/statusof/{rfqServiceType}/forcompany/{companyId} |
GET /api/job/{jobDisplayId}/rfq
Parameters:
Path Parameters:
jobDisplayId (string, path) (required): No description available
Query Parameters:
rfqServiceType (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/job/{jobDisplayId}/rfq"
,
jobDisplayId="2000000"
)
# Process the response
print(response)
ab api raw get /api/job/{jobDisplayId}/rfq \
jobDisplayId=2000000
curl -X GET \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/job/2000000/rfq'
Sample Response:
1{
2 "status": "success",
3 "data": {}
4}
GET /api/job/{jobDisplayId}/rfq/statusof/{rfqServiceType}/forcompany/{companyId}
Parameters:
Path Parameters:
companyId (string, path) (required): No description available
rfqServiceType (string, path) (required): No description available
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/job/{jobDisplayId}/rfq/statusof/{rfqServiceType}/forcompany/{companyId}"
,
companyId="ed282b80-54fe-4f42-bf1b-69103ce1f76c"
,
rfqServiceType="example-value"
,
jobDisplayId="2000000"
)
# Process the response
print(response)
ab api raw get /api/job/{jobDisplayId}/rfq/statusof/{rfqServiceType}/forcompany/{companyId} \
companyId=ed282b80-54fe-4f42-bf1b-69103ce1f76c \
rfqServiceType=example-value \
jobDisplayId=2000000
curl -X GET \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/job/2000000/rfq/statusof/example-value/forcompany/ed282b80-54fe-4f42-bf1b-69103ce1f76c'
Sample Response:
1{
2 "status": "success",
3 "data": {}
4}