Back

    Buyamia Directory API

    v1.0

    Supplier Assignment

    Manage which suppliers are assigned to an RFQ for quoting.

    Assign Suppliers

    POST
    /v1/rfq/:id/suppliers

    Assign one or more suppliers to an RFQ.

    rfq.write
    POST /v1/rfq/:id/suppliersjson
    {
      "supplier_ids": ["uuid-1", "uuid-2", "uuid-3"]
    }

    Remove Supplier

    DELETE
    /v1/rfq/:id/suppliers/:supplierId

    Remove a supplier from an RFQ.

    rfq.write

    List & Update RFQs

    GET
    /v1/rfq

    List RFQs with filters (status, buyer, date range).

    rfq.read
    GET
    /v1/rfq/:id

    Get full RFQ detail with items and suppliers.

    rfq.read
    PUT
    /v1/rfq/:id

    Update RFQ status or details.

    rfq.write
    Last updated on February 23, 2026