Fluid Commerce APIs (1.0)

The Fluid Commerce APIs provides a comprehensive set of APIs designed to integrate Fluid's powerful services into your applications seamlessly. This bundle offers robust functionality for enhancing messaging solutions, streamlining data management, and improving customer interactions. With detailed documentation, secure authentication, and flexible integration options, the Fluid Public API Bundle is engineered to help you leverage our services efficiently and effectively, unlocking new potentials and achieving greater connectivity within your systems.

Download OpenAPI description
Overview
E-mail support@fluid.app
License MIT
Languages
Servers
Mock server
https://docs.fluid.app/_mock/docs/apis/swagger/
Production server with company subdomain
https://{company}.fluid.app/
Local development server
http://fluid.lvh.me:{port}/

Admins

Operations

Agreements

Operations

Announcements

Operations

ApplePay

Operations

Application Themes

Operations

ApplicationThemeResources

Operations

ApplicationThemeTemplates

Operations

Authentication

Operations

Bank Accounts

Operations

Brand Guidelines

Operations

Business Types

Operations

Callback Definitions

Operations

Callback Registrations

Operations

Callback Schemas

Operations

Carts

Operations

Catch Ups

Operations

Categories

Operations

Checkout

Operations

Collections

Operations

Companies

Operations

Company Countries

Operations

Contacts

Operations

Countries

Operations

List company countries

Request

List all countries configured for the company

curl -i -X GET \
  https://docs.fluid.app/_mock/docs/apis/swagger/api/settings/company_countries \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Company countries retrieved successfully

Bodyapplication/json
company_countriesArray of objects(CompanyCountry)required
company_countries[].​idintegerrequired
company_countries[].​currencystringrequired
Example: "USD"
company_countries[].​base_shippingnumber or string or null
Default "0.0"
Example: 0
company_countries[].​defaultbooleanrequired
Example: false
company_countries[].​pause_incomplete_enrollmentboolean or null
Example: false
company_countries[].​handling_feenumber or null
Example: 5.99
company_countries[].​updated_atstring(date-time)required
Example: "2021-01-01T00:00:00Z"
company_countries[].​settlement_currencystring or null
Example: "USD"
company_countries[].​entity_legally_registeredboolean or null
Example: false
company_countries[].​countryobject(Country)required
company_countries[].​country.​idintegerrequired
company_countries[].​country.​namestringrequired
Example: "United States"
company_countries[].​country.​isostringrequired

2-letter country code (ISO 3166-1 alpha-2)

Example: "US"
company_countries[].​country.​tax_enabledboolean or null
Example: true
company_countries[].​country.​price_inclusive_of_taxbooleanrequired

Whether this country's prices are inclusive of tax

Example: true
company_countries[].​country.​price_inclusive_tax_namestring or null

The display name of the tax included in the price (e.g., VAT, GST)

Example: "VAT"
company_countries[].​country.​iso_namestringrequired
Example: "UNITED STATES"
company_countries[].​country.​iso3stringrequired

3-letter country code (ISO 3166-1 alpha-3)

Example: "USA"
company_countries[].​country.​currency_codestringrequired
Example: "USD"
company_countries[].​country.​currency_symbolstringrequired
Example: "$"
company_countries[].​country.​province_requiredbooleanrequired

Whether this country requires a province/state in addresses

Example: true
company_countries[].​entityobject or null(Company::Entity)
company_countries[].​tax_applyboolean or null
Example: false
company_countries[].​tax_business_idstring or null
Example: "123456789"
company_countries[].​tax_apply_discounted_ratesboolean or null
Example: false
company_countries[].​tax_auto_send_invoiceboolean or null
Example: false
company_countries[].​apply_shipping_taxboolean or null
Example: false
company_countries[].​avalara_shipping_tax_codestring or null
Example: "FR030000"
company_countries[].​customsstring or null

DDP = Delivery Duty Paid, DAP = Delivered at Place (customer pays VAT/customs on delivery)

Example: "DDP"
company_countries[].​use_company_default_tax_settingsboolean or null
Example: true
company_countries[].​use_company_avalara_tax_settingsboolean or null
Example: false
company_countries[].​use_company_manual_tax_settingsboolean or null
Example: false
company_countries[].​use_company_webhook_tax_settingsboolean or null
Example: false
company_countries[].​use_custom_avalara_tax_settingsboolean or null
Example: false
company_countries[].​custom_avalara_user_namestring or null
Example: "avalara_user"
company_countries[].​custom_avalara_passwordstring or null
Example: "password123"
company_countries[].​use_custom_avalara_product_tax_codeboolean or null
Example: false
company_countries[].​tax_optionstring or null
Example: "avalara"
company_countries[].​require_gaiyo_shomen_in_enrollmentboolean or null

Gaiyo Shomen is a company overview document required for certain business transactions in Japan. When enabled, this setting mandates that companies provide this document during enrollment flows. Only applicable for Japan country configurations.

Example: false
company_countries[].​warehouseobject or null(Warehouse)
company_countries[].​companyobject(Company)required
company_countries[].​company.​idintegerrequired
company_countries[].​company.​namestringrequired
Example: "Acme, Inc."
metaobjectrequired
meta.​request_idstring
Example: "123e4567-e89b-12d3-a456-426614174000"
meta.​timestampstring
Example: "2021-01-01T00:00:00Z"
Response
application/json
{ "company_countries": [ {} ], "meta": { "request_id": "123e4567-e89b-12d3-a456-426614174000", "timestamp": "2021-01-01T00:00:00Z" } }

Create a company country

Request

Add a new country to the company configuration

Bodyapplication/json
company_countryobjectrequired
company_country.​country_idintegerrequired
company_country.​currencystring
company_country.​warehouse_idinteger
company_country.​handling_feenumber
company_country.​defaultboolean
company_country.​tax_business_idstring
company_country.​use_company_default_tax_settingsboolean
company_country.​use_company_avalara_tax_settingsboolean
company_country.​use_custom_avalara_tax_settingsboolean
company_country.​use_company_webhook_tax_settingsboolean
company_country.​use_company_manual_tax_settingsboolean
company_country.​custom_avalara_user_namestring
company_country.​custom_avalara_passwordstring
company_country.​use_custom_avalara_product_tax_codeboolean
company_country.​tax_optionstring
company_country.​require_gaiyo_shomen_in_enrollmentboolean
company_country.​settlement_currencystring
company_country.​entity_idinteger
company_country.​entity_legally_registeredboolean
curl -i -X POST \
  https://docs.fluid.app/_mock/docs/apis/swagger/api/settings/company_countries \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "company_country": {
      "country_id": 0,
      "currency": "string",
      "warehouse_id": 0,
      "handling_fee": 0,
      "default": true,
      "tax_business_id": "string",
      "use_company_default_tax_settings": true,
      "use_company_avalara_tax_settings": true,
      "use_custom_avalara_tax_settings": true,
      "use_company_webhook_tax_settings": true,
      "use_company_manual_tax_settings": true,
      "custom_avalara_user_name": "string",
      "custom_avalara_password": "string",
      "use_custom_avalara_product_tax_code": true,
      "tax_option": "string",
      "require_gaiyo_shomen_in_enrollment": true,
      "settlement_currency": "string",
      "entity_id": 0,
      "entity_legally_registered": true
    }
  }'

Responses

No tax settings provided

Bodyapplication/json
company_countryobject(CompanyCountry)required
company_country.​idintegerrequired
company_country.​currencystringrequired
Example: "USD"
company_country.​base_shippingnumber or string or null
Default "0.0"
Example: 0
company_country.​defaultbooleanrequired
Example: false
company_country.​pause_incomplete_enrollmentboolean or null
Example: false
company_country.​handling_feenumber or null
Example: 5.99
company_country.​updated_atstring(date-time)required
Example: "2021-01-01T00:00:00Z"
company_country.​settlement_currencystring or null
Example: "USD"
company_country.​entity_legally_registeredboolean or null
Example: false
company_country.​countryobject(Country)required
company_country.​country.​idintegerrequired
company_country.​country.​namestringrequired
Example: "United States"
company_country.​country.​isostringrequired

2-letter country code (ISO 3166-1 alpha-2)

Example: "US"
company_country.​country.​tax_enabledboolean or null
Example: true
company_country.​country.​price_inclusive_of_taxbooleanrequired

Whether this country's prices are inclusive of tax

Example: true
company_country.​country.​price_inclusive_tax_namestring or null

The display name of the tax included in the price (e.g., VAT, GST)

Example: "VAT"
company_country.​country.​iso_namestringrequired
Example: "UNITED STATES"
company_country.​country.​iso3stringrequired

3-letter country code (ISO 3166-1 alpha-3)

Example: "USA"
company_country.​country.​currency_codestringrequired
Example: "USD"
company_country.​country.​currency_symbolstringrequired
Example: "$"
company_country.​country.​province_requiredbooleanrequired

Whether this country requires a province/state in addresses

Example: true
company_country.​entityobject or null(Company::Entity)
company_country.​tax_applyboolean or null
Example: false
company_country.​tax_business_idstring or null
Example: "123456789"
company_country.​tax_apply_discounted_ratesboolean or null
Example: false
company_country.​tax_auto_send_invoiceboolean or null
Example: false
company_country.​apply_shipping_taxboolean or null
Example: false
company_country.​avalara_shipping_tax_codestring or null
Example: "FR030000"
company_country.​customsstring or null

DDP = Delivery Duty Paid, DAP = Delivered at Place (customer pays VAT/customs on delivery)

Example: "DDP"
company_country.​use_company_default_tax_settingsboolean or null
Example: true
company_country.​use_company_avalara_tax_settingsboolean or null
Example: false
company_country.​use_company_manual_tax_settingsboolean or null
Example: false
company_country.​use_company_webhook_tax_settingsboolean or null
Example: false
company_country.​use_custom_avalara_tax_settingsboolean or null
Example: false
company_country.​custom_avalara_user_namestring or null
Example: "avalara_user"
company_country.​custom_avalara_passwordstring or null
Example: "password123"
company_country.​use_custom_avalara_product_tax_codeboolean or null
Example: false
company_country.​tax_optionstring or null
Example: "avalara"
company_country.​require_gaiyo_shomen_in_enrollmentboolean or null

Gaiyo Shomen is a company overview document required for certain business transactions in Japan. When enabled, this setting mandates that companies provide this document during enrollment flows. Only applicable for Japan country configurations.

Example: false
company_country.​warehouseobject or null(Warehouse)
company_country.​companyobject(Company)required
company_country.​company.​idintegerrequired
company_country.​company.​namestringrequired
Example: "Acme, Inc."
metaobjectrequired
meta.​request_idstring
Example: "123e4567-e89b-12d3-a456-426614174000"
meta.​timestampstring
Example: "2021-01-01T00:00:00Z"
Response
application/json
{ "company_country": { "id": 0, "currency": "USD", "base_shipping": 0, "default": false, "pause_incomplete_enrollment": false, "handling_fee": 5.99, "updated_at": "2021-01-01T00:00:00Z", "settlement_currency": "USD", "entity_legally_registered": false, "country": {}, "entity": {}, "tax_apply": false, "tax_business_id": "123456789", "tax_apply_discounted_rates": false, "tax_auto_send_invoice": false, "apply_shipping_tax": false, "avalara_shipping_tax_code": "FR030000", "customs": "DDP", "use_company_default_tax_settings": true, "use_company_avalara_tax_settings": false, "use_company_manual_tax_settings": false, "use_company_webhook_tax_settings": false, "use_custom_avalara_tax_settings": false, "custom_avalara_user_name": "avalara_user", "custom_avalara_password": "password123", "use_custom_avalara_product_tax_code": false, "tax_option": "avalara", "require_gaiyo_shomen_in_enrollment": false, "warehouse": {}, "company": {} }, "meta": { "request_id": "123e4567-e89b-12d3-a456-426614174000", "timestamp": "2021-01-01T00:00:00Z" } }

Update a company country

Request

Update an existing country configuration for the company

Path
idintegerrequired

Company country ID

Bodyapplication/json
idintegerrequired
company_countryobjectrequired
company_country.​currencystring
company_country.​warehouse_idinteger
company_country.​handling_feenumber
company_country.​defaultboolean
company_country.​tax_business_idstring
company_country.​use_company_default_tax_settingsboolean
company_country.​use_company_avalara_tax_settingsboolean
company_country.​use_custom_avalara_tax_settingsboolean
company_country.​use_company_webhook_tax_settingsboolean
company_country.​use_company_manual_tax_settingsboolean
company_country.​custom_avalara_user_namestring
company_country.​custom_avalara_passwordstring
company_country.​use_custom_avalara_product_tax_codeboolean
company_country.​tax_optionstring
company_country.​require_gaiyo_shomen_in_enrollmentboolean
company_country.​settlement_currencystring
company_country.​entity_idinteger
company_country.​entity_legally_registeredboolean
curl -i -X PUT \
  'https://docs.fluid.app/_mock/docs/apis/swagger/api/settings/company_countries/{id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "id": 0,
    "company_country": {
      "currency": "string",
      "warehouse_id": 0,
      "handling_fee": 0,
      "default": true,
      "tax_business_id": "string",
      "use_company_default_tax_settings": true,
      "use_company_avalara_tax_settings": true,
      "use_custom_avalara_tax_settings": true,
      "use_company_webhook_tax_settings": true,
      "use_company_manual_tax_settings": true,
      "custom_avalara_user_name": "string",
      "custom_avalara_password": "string",
      "use_custom_avalara_product_tax_code": true,
      "tax_option": "string",
      "require_gaiyo_shomen_in_enrollment": true,
      "settlement_currency": "string",
      "entity_id": 0,
      "entity_legally_registered": true
    }
  }'

Responses

Company country updated successfully

Bodyapplication/json
company_countryobject(CompanyCountry)required
company_country.​idintegerrequired
company_country.​currencystringrequired
Example: "USD"
company_country.​base_shippingnumber or string or null
Default "0.0"
Example: 0
company_country.​defaultbooleanrequired
Example: false
company_country.​pause_incomplete_enrollmentboolean or null
Example: false
company_country.​handling_feenumber or null
Example: 5.99
company_country.​updated_atstring(date-time)required
Example: "2021-01-01T00:00:00Z"
company_country.​settlement_currencystring or null
Example: "USD"
company_country.​entity_legally_registeredboolean or null
Example: false
company_country.​countryobject(Country)required
company_country.​country.​idintegerrequired
company_country.​country.​namestringrequired
Example: "United States"
company_country.​country.​isostringrequired

2-letter country code (ISO 3166-1 alpha-2)

Example: "US"
company_country.​country.​tax_enabledboolean or null
Example: true
company_country.​country.​price_inclusive_of_taxbooleanrequired

Whether this country's prices are inclusive of tax

Example: true
company_country.​country.​price_inclusive_tax_namestring or null

The display name of the tax included in the price (e.g., VAT, GST)

Example: "VAT"
company_country.​country.​iso_namestringrequired
Example: "UNITED STATES"
company_country.​country.​iso3stringrequired

3-letter country code (ISO 3166-1 alpha-3)

Example: "USA"
company_country.​country.​currency_codestringrequired
Example: "USD"
company_country.​country.​currency_symbolstringrequired
Example: "$"
company_country.​country.​province_requiredbooleanrequired

Whether this country requires a province/state in addresses

Example: true
company_country.​entityobject or null(Company::Entity)
company_country.​tax_applyboolean or null
Example: false
company_country.​tax_business_idstring or null
Example: "123456789"
company_country.​tax_apply_discounted_ratesboolean or null
Example: false
company_country.​tax_auto_send_invoiceboolean or null
Example: false
company_country.​apply_shipping_taxboolean or null
Example: false
company_country.​avalara_shipping_tax_codestring or null
Example: "FR030000"
company_country.​customsstring or null

DDP = Delivery Duty Paid, DAP = Delivered at Place (customer pays VAT/customs on delivery)

Example: "DDP"
company_country.​use_company_default_tax_settingsboolean or null
Example: true
company_country.​use_company_avalara_tax_settingsboolean or null
Example: false
company_country.​use_company_manual_tax_settingsboolean or null
Example: false
company_country.​use_company_webhook_tax_settingsboolean or null
Example: false
company_country.​use_custom_avalara_tax_settingsboolean or null
Example: false
company_country.​custom_avalara_user_namestring or null
Example: "avalara_user"
company_country.​custom_avalara_passwordstring or null
Example: "password123"
company_country.​use_custom_avalara_product_tax_codeboolean or null
Example: false
company_country.​tax_optionstring or null
Example: "avalara"
company_country.​require_gaiyo_shomen_in_enrollmentboolean or null

Gaiyo Shomen is a company overview document required for certain business transactions in Japan. When enabled, this setting mandates that companies provide this document during enrollment flows. Only applicable for Japan country configurations.

Example: false
company_country.​warehouseobject or null(Warehouse)
company_country.​companyobject(Company)required
company_country.​company.​idintegerrequired
company_country.​company.​namestringrequired
Example: "Acme, Inc."
metaobjectrequired
meta.​request_idstring
Example: "123e4567-e89b-12d3-a456-426614174000"
meta.​timestampstring
Example: "2021-01-01T00:00:00Z"
Response
application/json
{ "company_country": { "id": 0, "currency": "USD", "base_shipping": 0, "default": false, "pause_incomplete_enrollment": false, "handling_fee": 5.99, "updated_at": "2021-01-01T00:00:00Z", "settlement_currency": "USD", "entity_legally_registered": false, "country": {}, "entity": {}, "tax_apply": false, "tax_business_id": "123456789", "tax_apply_discounted_rates": false, "tax_auto_send_invoice": false, "apply_shipping_tax": false, "avalara_shipping_tax_code": "FR030000", "customs": "DDP", "use_company_default_tax_settings": true, "use_company_avalara_tax_settings": false, "use_company_manual_tax_settings": false, "use_company_webhook_tax_settings": false, "use_custom_avalara_tax_settings": false, "custom_avalara_user_name": "avalara_user", "custom_avalara_password": "password123", "use_custom_avalara_product_tax_code": false, "tax_option": "avalara", "require_gaiyo_shomen_in_enrollment": false, "warehouse": {}, "company": {} }, "meta": { "request_id": "123e4567-e89b-12d3-a456-426614174000", "timestamp": "2021-01-01T00:00:00Z" } }

Delete a company country

Request

Remove a country from the company configuration

Path
idintegerrequired

Company country ID

curl -i -X DELETE \
  'https://docs.fluid.app/_mock/docs/apis/swagger/api/settings/company_countries/{id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Company country deleted successfully

Bodyapplication/json
successbooleanrequired
Example: true
messagestringrequired
Example: "Company country deleted successfully"
metaobjectrequired
meta.​request_idstring
Example: "123e4567-e89b-12d3-a456-426614174000"
meta.​timestampstring
Example: "2021-01-01T00:00:00Z"
Response
application/json
{ "success": true, "message": "Company country deleted successfully", "meta": { "request_id": "123e4567-e89b-12d3-a456-426614174000", "timestamp": "2021-01-01T00:00:00Z" } }

Get valid tax options for the company country

Request

Get valid tax options for the company country

Query
country_idintegerrequired

Company country ID

curl -i -X GET \
  'https://docs.fluid.app/_mock/docs/apis/swagger/api/settings/company_countries/tax_options?country_id=0' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Company country tax options retrieved successfully

Bodyapplication/json
tax_optionsArray of stringsrequired
metaobject
Response
application/json
{ "tax_options": [ "string" ], "meta": { "request_id": "123e4567-e89b-12d3-a456-426614174000", "timestamp": "2021-01-01T00:00:00Z" } }

Currencies

Operations

Customer Orders

Operations

CustomerNotes

Operations

Customers

Operations

DAM Query

Operations

Dam

Operations

Default Libraries

Operations

DefaultMySites

Operations

Devices

Operations

Discounts

Operations

Display Settings

Operations

Domains

Operations

Drop Zones

Operations

Droplet Categories

Operations

Droplet Installations

Operations

Droplets

Operations

Enrollment Packs

Operations

Enrollments

Operations

Entities

Operations

FairShare Order Journey

Operations

Fantasy Points

Operations

Feature Flags

Operations

File Resources

Operations

Fluid Orchestration

Operations

Fluid Orchestration - Configurations

Operations

Fluid Orchestration - Rule Based

Operations

Fluid Orchestration - Default Fallback

Operations

Fluid Pay

Operations

Form Elements

Operations

Forms

Operations

GlobalEmbeds

Operations

Impersonation

Operations

Inventory Levels

Operations

Labels

Operations

Languages

Operations

MCC Codes

Operations

Media

Operations

Metafield Definitions

Operations

Metafields

Operations

Mobile Widgets

Operations

Multi Factor Authentications

Operations

Multi-Factor Authentications

Operations

Notifications

Operations

Onboarding

Operations

Onboarding Info

Operations

Order Fulfillments

Operations

Orders

Operations

Owners

Operations

Pages

Operations

Payment

Operations

Payment Accounts

Operations

Payment Integrations

Operations

Paypal

Operations

Points Ledgers

Operations

Points Values

Operations

Posts

Operations

ProductBundles

Operations

ProductImages

Operations

ProductSubscriptionPlans

Operations

Products

Operations

Prompts

Operations

Public Assets

Operations

Public Companies

Operations

Public Drop Zones

Operations

Ranks

Operations

Redirects

Operations

Refunds

Operations

Reps

Operations

Roles

Operations

Root Themes

Operations

Shares

Operations

Shop

Operations

Sitemap

Operations

Social Media

Operations

Subscription Plans

Operations

Subscriptions

Operations

System Monitoring

Operations

Tags

Operations

Tax Categories

Operations

Theme Region Rules

Operations

Tracking Informations

Operations

Tree Nodes

Operations

Trees

Operations

Users

Operations

Variant Countries

Operations

VariantCountries

Operations

VariantImages

Operations

VariantInventoryLevels

Operations

Variants

Operations

Warehouses

Operations

Webhook Events

Operations

Webhook Schemas

Operations

Webhooks

Operations

Webhooks Resources

Operations

Get a specific media

Request

Path
idintegerrequired

Media ID

Example: 1
Query
language_isostring

Language code for translations (e.g., 'en', 'es', 'de')

curl -i -X GET \
  'https://docs.fluid.app/_mock/docs/apis/swagger/api/media/{id}?language_iso=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Media retrieved successfully

Bodyapplication/json
idintegerrequired
user_idinteger or null
titlestringrequired
descriptionobject or null
strippedstring or null
media_typestringrequired
Enum"share""update""training""upload"
media_formatstring or null
image_urlstring or null
video_urlstring or null
pdf_urlstring or null
kindstring or null
activebooleanrequired
visibilityinteger or null
share_linkstring or null
preview_linkstring or null
viewsintegerrequired
leadsintegerrequired
watchobject or null
video_statusstring or null
durationinteger or null
cta_urlstring or null
cta_button_textstring or null
cta_enabledbooleanrequired
cta_action_typestring or null
video_shopping_enabledbooleanrequired
prompts_enabledbooleanrequired
ranksArray of strings
settingsobject or null
application_theme_template_idinteger or null
created_atstring(date-time)required
subtitlesobject or null

Hash of language ISO codes to subtitle text

countriesArray of objects
tagsArray of objects
slugstring or null

URL-friendly slug for the media item

custom_slugboolean

Whether the slug was customized by the user

promptsArray of objects

Only included if media_type is 'share' or 'upload'

attached_shareablesArray of objects
commentsArray of objects

Only included if video_shopping_enabled is true and display_comments is true

labelobject or null

Label object from LabelConcern

display_tagstring or null

Display tag from LabelConcern

Response
application/json
{ "id": 0, "user_id": 0, "title": "string", "description": {}, "stripped": "string", "media_type": "share", "media_format": "string", "image_url": "string", "video_url": "string", "pdf_url": "string", "kind": "string", "active": true, "visibility": 0, "share_link": "string", "preview_link": "string", "views": 0, "leads": 0, "watch": {}, "video_status": "string", "duration": 0, "cta_url": "string", "cta_button_text": "string", "cta_enabled": true, "cta_action_type": "string", "video_shopping_enabled": true, "prompts_enabled": true, "ranks": [ "string" ], "settings": {}, "application_theme_template_id": 0, "created_at": "2019-08-24T14:15:22Z", "subtitles": { "property1": "string", "property2": "string" }, "countries": [ {} ], "tags": [ {} ], "slug": "string", "custom_slug": true, "prompts": [ {} ], "attached_shareables": [ {} ], "comments": [ {} ], "label": {}, "display_tag": "string" }