Skip to main content

Get All RFI

This API will help you to fetch the details associated with the RFI on the basis of transaction Id for each clientId.

Definition

URL
GET https://api-test.instarem.com:4803/api/v1/client/{clientId}/rfi/transaction/{transactionId}

Header Parameters:

ParameterDescriptionTypeRequired
authorizationAuthentication token.StringYes
content-typeThe Content-Type entity header is used to indicate the media type of the resource. Expected values could be application/json or multipart/form-data.StringYes

Path Parameters:

ParameterDescriptionTypeRequired
clientIdThis is the unique client ID generated by Nium.StringYes
transactionIdThis is the unique transaction ID generated by Nium.StringYes

Example Request:

curl --request get \\
--url "https://api-test.instarem.com:4803/api/v1/client/{clientId}/rfi/transaction/{transactionId}" \\
--header 'authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE0OTgxMzQ4OTQsImRhdGEiOnsic3ViIjoiNTk0MjNmMzZjZWEyMTQ2OTI2ODczOWE1IiwiY2xpZW50IjoiNTk0MjNmMzZjZWEyMTQ2OTI2ODczOWExIn0sImlhdCI6MTQ5ODA0ODQ5NH0.pevwSDpk-JDNtVIpqFu_m0Xu1UnDVumrAYStcrxf8sM' \\
--header 'content-type: application/json'

Response (200):

[
{
"rfiId": "03bd58a0-f726-11ea-ab6c-414e561364fe",
"requesterComment": "Need invoice copy",
"responderComment": "",
"rfiStatus": "RAISED",
"documentTypeId": "03bd58a0-f726-11ea-ab6c-414e312364fd",
"documentType": "INVOICE_COPY"
},
{
"rfiId": "21cd88a0-f896-11ea-ab6c-214e532343ef",
"requesterComment": "Need purchase order copy",
"responderComment": "",
"rfiStatus": "RAISED",
"documentTypeId": "32bd78a0-s981-99ea-ab6c-324e312387sd",
"documentType": "PURCHASE_ORDER_COPY"
},
{
"rfiId": "192fae14-e891-4468-bb7a-cbb9dbb8d78b",
"requesterComment": "invoice copy",
"responderComment": "RFI Responded",
"rfiStatus": "RESPONDED",
"documentTypeId": "e0758b6e-80aa-4a73-a481-ae1f176797f0",
"documentType": "ADVANCED_SHIPMENT_NOTICE"
}
]

Response Parameters:

ParameterDescriptionType
rfiIdUnique rfi id generated by Nium.String
requesterCommentRequester comment against RFIString
responderCommentResponder comment against RFIString
rfiStatusThis field defines the Rfi Status and the value for this could be RAISED or RESPONDEDString
documentTypeIdUnique document id of receive generated by Nium.String
documentTypeThis field defines the type of document and the value for this could be:

- INVOICE_COPY
- ADVANCED_SHIPMENT_NOTICE
- PURCHASE_ORDER_COPY
String