Overview
Use this endpoint to retrieve detailed information about RFP based on its unique shipment number.
Endpoint
HTTP Method: GET
Endpoint URL: https://coreapi.impexdocs.com/api/v1/shipment/{shipmentdocs_id}/rfp
Authentication: Required
Response Format (Successfully Retrieved)
A successful retrieval will yield a JSON response containing the following details like:
- Shipment Number
- Shipment Docs Id
- Shipment Folder Details Id
- RFP Details
- and more...
Request Parameters
To fetch RFP details, provide the required field, which is the "Shipment Number" {shipment_no}. Alternatively, users can also pass the Shipment Docs Id {shipmentdocs_id} in place of the Shipment Number for retrieval.
Example
Request
GET https://coreapi.impexdocs.com/api/v1/shipment/{shipmentdocs_id}/rfp
Response
{
"shipment_no": "Impx-Demo",
"shipmentdocs_id": "5a8ef9c4-dfd-4b09-bf51-faad55d94c41",
"shipmentfolderdetail_id": "c2b9fdf0-4453-4deb-9ed7-e3141f80260a",
"rfp_details": [
{
"commodity": "MEAT",
"exporter_reference": "EXP_49021",
"customer_reference": "9002323",
"exporter_number": "331",
"exporter_number_desc": "ROGER AND ANDERSON",
"rfp_number": "",
"status": "REJECTED",
"edn": "",
"epn": ""
},
//Additional RFP
]
}
This example demonstrates a request to fetch the RFP details of a shipment with the provided shipment number. The response includes details such as the shipment number, shipment docs id, shipment folder details ID, and RFP information.