Search a KV Table

post/kvservice.fetch/{tableName}

Returns records that match the search criteria.

Securitybasic or X-PriceFx-jwt
Request
path Parameters
tableName
required
string

A name of the table you want to search the pattern for.

Request Body schema: application/json
object
sku
string
Responses
200

OK

Response Schema: application/json
Array
payload
string
record
integer
sku
string
customer
string
Request samples
application/json
{
  • "data": {
    • "sku": "SKUABCDE12345"
    }
}
Response samples
application/json
[
  • {
    • "payload": "{}",
    • "record": 1,
    • "sku": "A1",
    • "customer": "B2"
    },
  • {
    • "payload": "{}",
    • "record": 1,
    • "sku": "A1",
    • "customer": "83-3126689"
    },
  • {
    • "payload": "{}",
    • "record": 1,
    • "sku": "A1",
    • "customer": "45-0245039"
    }
]