Create a new RFQ quote
Path parameters
-
The Company ID given by Fipto.
Format should match the following pattern:
[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}
.
POST
/companies/{company_id}/requests-for-quote
curl \
-X POST https://api.fipto.app/companies/9de0691c-bc8d-409b-8f40-75d4f45db2f3/requests-for-quote \
-H "Content-Type: application/json" \
-d '{"data":{"type":"rfq","attributes":{"buy_amount":"1000"}}}'
Request example
{
"data": {
"type": "rfq",
"attributes": {
"buy_amount": "1000"
}
}
}
Request examples
{
"data": {
"type": "rfq",
"attributes": {
"buy_amount": "1000"
}
}
}
Response examples (201)
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": {
"id": "string",
"type": "rfq",
"attributes": {
"status": "submitted",
"buy_amount": "1000"
}
}
}
Response examples (201)
{
"meta": {
"request_id": "string",
"query_parameters": {}
},
"data": {
"id": "string",
"type": "rfq",
"attributes": {
"status": "submitted",
"buy_amount": "1000"
}
}
}