Fluid Company APIs (1.0)

The Fluid Company APIs provide a comprehensive set of APIs designed to integrate Fluid's powerful services into your applications seamlessly. These APIs use Company API tokens for authentication and provide full access to manage your company's resources including users, orders, products, media, and more.

For APIs that authenticate with User tokens, see the Rep APIs documentation.

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

Activities

Operations

Admins

Operations

Agreements

Operations

Announcements

Operations

ApplePay

Operations

Application Theme Resources

Operations

Application Theme Templates

Operations

Application Themes

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

Conversations

Operations

Countries

Operations

Currencies

Operations

Customer Notes

Operations

Customer Orders

Operations

Customers

Operations

DAM Query

Operations

Dam

Operations

Default MySites

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

Events

Operations

FairShare Order Journey

Operations

Feature Flags

Operations

File Resources

Operations

Fluid Pay

Operations

Form Elements

Operations

Forms

Operations

Global Embeds

Operations

Inventory Levels

Operations

Labels

Operations

Languages

Operations

Libraries

Operations

MCC Codes

Operations

Media

Operations

Messages

Operations

Metafield Definitions

Operations

Metafields

Operations

Mobile Widgets

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

Payments

Operations

Paypal

Operations

Points

Operations

Points Ledgers

Operations

Points Values

Operations

Posts

Operations

Product Bundles

Operations

Product Images

Operations

Product Subscription Plans

Operations

Products

Operations

Prompts

Operations

Public Assets

Operations

Public Companies

Operations

Public Drop Zones

Operations

Ranks

Operations

Recipients

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

Tiles

Operations

List Company Tiles

Request

Retrieves a list of company tiles containing basic information and links.

curl -i -X GET \
  https://docs.fluid.app/_mock/docs/apis/company.api/api/company/tiles

Responses

Headers
Content-Typestring

The content type of the response

Example: "application/json"
Content-Lengthstring

The length of the response content in bytes

Example: "981"
X-Request-Idstring

A unique identifier for the request

Example: "b1b7bf86-146e-4c66-b4c6-ac6f0f9ddafa"

Create Company Tile

Request

Creates a new tile for a company with specified details like title, URL, and optional attributes such as subtitle, images, and country associations.

Bodyapplication/jsonrequired
tileobject(Tile)required
Example: {"title":"ADSite","url":"https://www.anupamdahal.com.np","subtitle":"Personal Portfolio","image_url":"https://miracleanupam.github.io/favicon.ico","icon_url":"","active":true,"available_countries":["us","in","npl"]}
tile.​titlestringrequired
Example: "ADSite"
tile.​urlstringrequired
Example: "https://www.anupamdahal.com.np"
tile.​subtitlestringrequired
Example: "Personal Portfolio"
tile.​image_urlstringrequired
Example: "https://miracleanupam.github.io/favicon.ico"
tile.​icon_urlstringrequired
tile.​activebooleanrequired
Example: true
tile.​available_countriesArray of stringsrequired
Example: ["us","in","npl"]
curl -i -X POST \
  https://docs.fluid.app/_mock/docs/apis/company.api/api/company/tiles \
  -H 'Content-Type: application/json' \
  -d '{
    "tile": {
      "title": "ADSite",
      "url": "https://www.anupamdahal.com.np",
      "subtitle": "Personal Portfolio",
      "image_url": "https://miracleanupam.github.io/favicon.ico",
      "icon_url": "",
      "active": true,
      "available_countries": [
        "us",
        "in",
        "npl"
      ]
    }
  }'

Responses

Headers
Content-Typestring

The content type of the response

Example: "application/json"
Content-Lengthstring

The length of the response content in bytes

Example: "981"
X-Request-Idstring

A unique identifier for the request

Example: "b1b7bf86-146e-4c66-b4c6-ac6f0f9ddafa"

Update Company Tile

Request

Updates a specific tile associated with a company with new properties like title, URL, subtitle, images, and country associations.

Path
idintegerrequired

The ID of the tile to update

Bodyapplication/jsonrequired
tileobject(Tile1)required
Example: {"title":"ADSite: Anupam's Blog","active":true,"available_countries":[]}
tile.​titlestringrequired
Example: "ADSite: Anupam's Blog"
tile.​activebooleanrequired
Example: true
tile.​available_countriesArray of stringsrequired
Example: []
curl -i -X PATCH \
  'https://docs.fluid.app/_mock/docs/apis/company.api/api/company/tiles/{id}' \
  -H 'Content-Type: application/json' \
  -d '{
    "tile": {
      "title": "ADSite: Anupam'\''s Blog",
      "active": true,
      "available_countries": []
    }
  }'

Responses

Headers
Content-Typestring

The content type of the response

Example: "application/json"
Content-Lengthstring

The length of the response content in bytes

Example: "981"
X-Request-Idstring

A unique identifier for the request

Example: "b1b7bf86-146e-4c66-b4c6-ac6f0f9ddafa"

Get Company Tile Details

Request

Retrieves the details of a specific company tile.

Path
idintegerrequired

The unique identifier of the company tile

curl -i -X GET \
  'https://docs.fluid.app/_mock/docs/apis/company.api/api/company/tiles/{id}'

Responses

Headers
Content-Typestring

The content type of the response

Example: "application/json"
Content-Lengthstring

The length of the response content in bytes

Example: "981"
X-Request-Idstring

A unique identifier for the request

Example: "b1b7bf86-146e-4c66-b4c6-ac6f0f9ddafa"

Delete Company Title

Request

Deletes a specific title from the company.

Path
idintegerrequired

The ID of the company title to delete

curl -i -X DELETE \
  'https://docs.fluid.app/_mock/docs/apis/company.api/api/company/tiles/{id}'

Responses

Headers
Content-Typestring

The content type of the response

Example: "application/json"
Content-Lengthstring

The length of the response content in bytes

Example: "981"
X-Request-Idstring

A unique identifier for the request

Example: "b1b7bf86-146e-4c66-b4c6-ac6f0f9ddafa"

Tracking Informations

Operations

Tree Nodes

Operations

Trees

Operations

Users

Operations

Variant Countries

Operations

Variant Images

Operations

Variant Inventory Levels

Operations

Variants

Operations

Warehouses

Operations

Webhook Events

Operations

Webhook Schemas

Operations

Webhooks

Operations

Webhooks Resources

Operations

affiliate

Operations

carts

Operations

checkout

Operations

enrollment-packs

Operations

events

Operations

fingerprint

Operations

lead

Operations

media

Operations

page

Operations

playlist

Operations

product

Operations

session

Operations

settings

Operations

url

Operations

widgets

Operations