Get a Key

post/kvservice.fetchkey/{tableName}

Retrieves the payload from the table with the specified key. The request must contain key/value pairs for all primary keys as defined in table.

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

A name of the table you want to retrieve the "payload" from.

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

OK. The "payload" is returned.

Request samples
application/json
{
  • "data": {
    • "keys": {
      • "sku": "A1",
      • "customer": "B2"
      }
    }
}