FloorFound API (1.0)

Download OpenAPI specification:Download

This is a RESTful API for interacting with the FloorFound system.

Products

All about /v1/products

Get Products

Get Product array with pagination

Authorizations:
ApiKeyAuth
query Parameters
skip
integer
take
integer

Responses

Response samples

Content type
application/json
{
  • "total": 0,
  • "data": [
    ]
}

Get Product by ID

Get Product by ID, which can either be the UUID or SKU of the product in the FloorFound system.

Authorizations:
ApiKeyAuth
path Parameters
productId
required
string

Responses

Response samples

Content type
application/json
{
  • "data": {
    }
}

RecommerceRequests

All about /v1/recommerce-requests

Get Recommerce Requests

Get paginated list of recommerce requests that have not been archived. List is sorted by created date in descending order.

Authorizations:
ApiKeyAuth
query Parameters
skip
integer
take
integer

Responses

Response samples

Content type
application/json
{
  • "total": 0,
  • "data": [
    ]
}

Get a Recommerce Request by ID

Get a Recommerce Request by ID, which can either be the UUID or Short ID of the recommerce request in the FloorFound system.

Authorizations:
ApiKeyAuth
path Parameters
recommerceRequestId
required
string

Responses

Response samples

Content type
application/json
{
  • "data": {
    }
}

Items

All about /v1/items

Get Items

Get paginated list of items that have not been invalidated. List is sorted by created date in descending order.

Authorizations:
ApiKeyAuth
query Parameters
skip
integer
take
integer

Responses

Response samples

Content type
application/json
{
  • "total": 0,
  • "data": [
    ]
}

Get an Item by ID

Get an Item by ID, which can either be the UUID or FFID of the item in the FloorFound system.

Authorizations:
ApiKeyAuth
path Parameters
itemId
required
string

Responses

Response samples

Content type
application/json
{
  • "data": {
    }
}