Get all marketplace categories
GET/api/marketplace/categories
Lists the marketplace categories Ownli currently offers. Each category's slug is the path parameter for POST /api/marketplace/links/category/{categorySlug} when generating a handoff URL. The set of categories grows as new ones are onboarded, so fetch this list rather than hard-coding slugs.
Responses
- 200
Marketplace categories returned.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id string
Id of the category
slug string
Public slug
name string
Name of the category
description string
Description of the category
logo string
Logo URL of the category
[
{
"id": "string",
"slug": "string",
"name": "string",
"description": "string",
"logo": "string"
}
]
Loading...