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

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

Delete company media

Request

Delete a media item (soft delete)

Path
idintegerrequired

Media ID

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

Responses

Media deleted successfully

Bodyapplication/json
string
Response
application/json
"string"

Get company media

Request

Get a specific media item by ID

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/company/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" }

Update company media

Request

Update an existing media item

Path
idintegerrequired

Media ID

Example: 1
Bodyapplication/json
idintegerrequired
mediumobjectrequired
medium.​user_idinteger
medium.​media_typestringnon-empty
medium.​image_urlnull or string
medium.​video_urlnull or string
medium.​pdf_urlnull or string
medium.​powerpoint_urlstringnon-empty
medium.​titlestringnon-empty
medium.​descriptionnull or string
medium.​activeboolean
medium.​compressed_image_urlstringnon-empty
medium.​prompts_enabledboolean
medium.​kindstringnon-empty
medium.​visibilitystringnon-empty
medium.​cta_enabledboolean
medium.​cta_action_typestringnon-empty
medium.​cta_urlnull or string
medium.​cta_button_textstringnon-empty
medium.​slugnull or string
medium.​custom_slugboolean
medium.​no_indexboolean
medium.​display_commentsboolean
medium.​categorystringnon-empty
medium.​display_shopboolean
medium.​dam_asset_idinteger
medium.​dam_asset_codestringnon-empty
medium.​lead_captureboolean
medium.​video_shopping_enabledboolean
medium.​application_theme_template_idinteger
medium.​settingsobject
medium.​labelobject
medium.​subtitlesArray of objects
medium.​available_countriesArray of strings
medium.​tags_attributesArray of objects
medium.​prompts_attributesArray of objects
medium.​attached_shareables_attributesArray of objects
curl -i -X PUT \
  'https://docs.fluid.app/_mock/docs/apis/swagger/api/company/media/{id}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "id": 0,
    "medium": {
      "user_id": 0,
      "media_type": "string",
      "image_url": null,
      "video_url": null,
      "pdf_url": null,
      "powerpoint_url": "string",
      "title": "string",
      "description": null,
      "active": true,
      "compressed_image_url": "string",
      "prompts_enabled": true,
      "kind": "string",
      "visibility": "string",
      "cta_enabled": true,
      "cta_action_type": "string",
      "cta_url": null,
      "cta_button_text": "string",
      "slug": null,
      "custom_slug": true,
      "no_index": true,
      "display_comments": true,
      "category": "string",
      "display_shop": true,
      "dam_asset_id": 0,
      "dam_asset_code": "string",
      "lead_capture": true,
      "video_shopping_enabled": true,
      "application_theme_template_id": 0,
      "settings": {
        "player": {
          "primary_color": "string",
          "button_border_radius": "string",
          "control_bar_height": "string",
          "progress_color": "string",
          "volume_color": "string",
          "show_controls": true,
          "autoplay": true,
          "loop": true,
          "muted": true,
          "preload": "string",
          "playback_rates": "string",
          "show_remaining_time": true,
          "responsive": true,
          "fluid": true
        },
        "embed": {
          "behavior": "string",
          "responsive": true,
          "width": "string",
          "height": "string",
          "show_controls": true,
          "autoplay": true,
          "loop": true
        },
        "cta": {
          "enabled": true,
          "type": "string",
          "url": null,
          "button_description": null,
          "button_text": "string",
          "button_color": "string"
        },
        "fair_share": {
          "bg_color": "string",
          "rep_name": "string",
          "rep_avatar": "string",
          "message": "string"
        },
        "live_chat": {
          "enabled": true,
          "color": "string",
          "welcome_message": "string"
        },
        "thumbnail": {
          "show_title": true,
          "show_description": true
        },
        "seo": {
          "title": "string",
          "description": "string",
          "image_url": "string",
          "image_path": "string",
          "block_crawler": true
        }
      },
      "label": {
        "id": 0,
        "title": "string"
      },
      "subtitles": [
        {
          "lang": "string",
          "src": "string"
        }
      ],
      "available_countries": [
        "string"
      ],
      "tags_attributes": [
        {
          "id": 0,
          "_destroy": true,
          "name": "string"
        }
      ],
      "prompts_attributes": [
        {
          "id": 0,
          "title": "string",
          "content": "string",
          "_destroy": true
        }
      ],
      "attached_shareables_attributes": [
        {
          "id": 0,
          "attachment_type": "string",
          "attachment_id": 0,
          "timestamp": "string",
          "_destroy": true
        }
      ]
    }
  }'

Responses

Media updated successfully

Bodyapplication/json
mediumobject(MediumSerializer)

Media resource with user-specific data and associations

metaobject(Meta)

Standard response metadata

Response
application/json
{ "medium": { "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": [], "settings": {}, "application_theme_template_id": 0, "created_at": "2019-08-24T14:15:22Z", "subtitles": {}, "countries": [], "tags": [], "slug": "string", "custom_slug": true, "prompts": [], "attached_shareables": [], "comments": [], "label": {}, "display_tag": "string" }, "meta": { "request_id": "02368efa-fda5-4c51-a6f4-75e351796526", "timestamp": "2025-06-30T16:17:59Z" } }

List company media

Request

Get all company media with pagination and filtering. Only returns 'share' type media by default.

Query
pageinteger

Page number for pagination

Default 1
per_pageinteger

Number of records per page

Default 10
search_querystring

Search by title

sorted_bystring

Sort order (title_desc, created_at_desc, etc)

statusstring

Filter by status (active/inactive)

Enum"active""inactive"
language_isostring

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

curl -i -X GET \
  'https://docs.fluid.app/_mock/docs/apis/swagger/api/company/media?language_iso=string&page=1&per_page=10&search_query=string&sorted_by=string&status=active' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Company media retrieved successfully

Bodyapplication/jsonArray [
One of:
paginationobject
]
Response
application/json
[ { "pagination": {} } ]

Create company media

Request

Create a new media item for the company

Bodyapplication/json
mediumobjectrequired
medium.​user_idinteger
medium.​languagestringnon-empty
medium.​media_typestringnon-empty
medium.​image_urlstringnon-empty
medium.​video_urlstringnon-empty
medium.​pdf_urlstringnon-empty
medium.​powerpoint_urlstringnon-empty
medium.​titlestringnon-empty
medium.​descriptionstringnon-empty
medium.​activeboolean
medium.​compressed_image_urlstringnon-empty
medium.​prompts_enabledboolean
medium.​kindstringnon-empty
medium.​visibilitystringnon-empty
medium.​cta_enabledboolean
medium.​cta_action_typestringnon-empty
medium.​cta_urlstringnon-empty
medium.​cta_button_textstringnon-empty
medium.​slugnull or string
medium.​custom_slugboolean
medium.​no_indexboolean
medium.​display_commentsboolean
medium.​categorystringnon-empty
medium.​display_shopboolean
medium.​dam_asset_idinteger
medium.​dam_asset_codestringnon-empty
medium.​lead_captureboolean
medium.​video_shopping_enabledboolean
medium.​application_theme_template_idinteger
medium.​settingsobject
medium.​labelobject
medium.​subtitlesArray of objects
medium.​available_countriesArray of strings
medium.​tags_attributesArray of objects
medium.​prompts_attributesArray of objects
medium.​attached_shareables_attributesArray of objects
curl -i -X POST \
  https://docs.fluid.app/_mock/docs/apis/swagger/api/company/media \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "medium": {
      "user_id": 0,
      "language": "string",
      "media_type": "string",
      "image_url": "string",
      "video_url": "string",
      "pdf_url": "string",
      "powerpoint_url": "string",
      "title": "string",
      "description": "string",
      "active": true,
      "compressed_image_url": "string",
      "prompts_enabled": true,
      "kind": "string",
      "visibility": "string",
      "cta_enabled": true,
      "cta_action_type": "string",
      "cta_url": "string",
      "cta_button_text": "string",
      "slug": null,
      "custom_slug": true,
      "no_index": true,
      "display_comments": true,
      "category": "string",
      "display_shop": true,
      "dam_asset_id": 0,
      "dam_asset_code": "string",
      "lead_capture": true,
      "video_shopping_enabled": true,
      "application_theme_template_id": 0,
      "settings": {},
      "label": {
        "id": 0,
        "title": "string"
      },
      "subtitles": [
        {
          "lang": "string",
          "src": "string"
        }
      ],
      "available_countries": [
        "string"
      ],
      "tags_attributes": [
        {
          "id": 0,
          "_destroy": true,
          "name": "string"
        }
      ],
      "prompts_attributes": [
        {
          "id": 0,
          "title": "string",
          "content": "string",
          "_destroy": true
        }
      ],
      "attached_shareables_attributes": [
        {
          "id": 0,
          "attachment_type": "string",
          "attachment_id": 0,
          "timestamp": "string",
          "_destroy": true
        }
      ]
    }
  }'

Responses

Media created successfully

Bodyapplication/json
mediumobject(MediumSerializer)

Media resource with user-specific data and associations

metaobject(Meta)

Standard response metadata

Response
application/json
{ "medium": { "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": [], "settings": {}, "application_theme_template_id": 0, "created_at": "2019-08-24T14:15:22Z", "subtitles": {}, "countries": [], "tags": [], "slug": "string", "custom_slug": true, "prompts": [], "attached_shareables": [], "comments": [], "label": {}, "display_tag": "string" }, "meta": { "request_id": "02368efa-fda5-4c51-a6f4-75e351796526", "timestamp": "2025-06-30T16:17:59Z" } }

Send media to top

Request

Move a media item to the top of the list by updating its created_at timestamp

Path
idintegerrequired

Media ID

Example: 1
curl -i -X GET \
  'https://docs.fluid.app/_mock/docs/apis/swagger/api/company/media/{id}/send_to_top' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Media sent to top 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" }

List media

Request

Get all media with pagination and filtering

Query
pageinteger

Page number for pagination

Default 1
per_pageinteger

Number of records per page

Default 10
search_querystring

Search by title

sorted_bystring

Sort order (title_desc, created_at_desc, etc)

Default "title_desc"
statusstring

Filter by status (active/inactive)

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?language_iso=string&page=1&per_page=10&search_query=string&sorted_by=title_desc&status=string' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Media retrieved successfully

Bodyapplication/jsonArray [
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": [], "settings": {}, "application_theme_template_id": 0, "created_at": "2019-08-24T14:15:22Z", "subtitles": {}, "countries": [], "tags": [], "slug": "string", "custom_slug": true, "prompts": [], "attached_shareables": [], "comments": [], "label": {}, "display_tag": "string" } ]

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" }