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

Agreements

Operations

ApplePay

Operations

Application Themes

Operations

ApplicationThemeTemplates

Operations

Authentication

Operations

Callback Definitions

Operations

Callback Registrations

Operations

Carts

Operations

Company Custom Catch Ups

Operations

Company Discounts

Operations

Company Droplets

Operations

Company Pages

Operations

Company Popups

Operations

Company Settings - Checkout

Operations

Show a checkout settings

Request

Show the current checkout settings for the company.

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

Responses

checkout settings shown

Bodyapplication/json
idintegerrequired
namestringrequired
primary_domain_hostnamestring or null
Example: "acme.com"
subdomainstring or null
Example: "acme"
logo_urlstring or null
Example: "https://acme.com/logo.png"
fluid_shopboolean or null
Example: true
collect_phoneboolean or null
Example: true
require_phoneboolean or null
Example: true
require_billing_zipboolean or null
Example: true
checkout_primary_button_colorstring or null
Example: "#000000"
checkout_primary_text_colorstring or null
Example: "#FFFFFF"
checkout_secondary_button_colorstring or null
Example: "#000000"
checkout_secondary_text_colorstring or null
Example: "#FFFFFF"
Response
application/json
{ "id": 0, "name": "string", "primary_domain_hostname": "acme.com", "subdomain": "acme", "logo_url": "https://acme.com/logo.png", "fluid_shop": true, "collect_phone": true, "require_phone": true, "require_billing_zip": true, "checkout_primary_button_color": "#000000", "checkout_primary_text_color": "#FFFFFF", "checkout_secondary_button_color": "#000000", "checkout_secondary_text_color": "#FFFFFF" }

Update a checkout settings

Request

Update the current checkout settings for the company.

Bodyapplication/json
checkoutobjectrequired
checkout.​collect_phoneboolean
checkout.​require_phoneboolean
checkout.​require_billing_zipboolean
checkout.​checkout_primary_button_colorstring
checkout.​checkout_primary_text_colorstring
checkout.​checkout_secondary_button_colorstring
checkout.​checkout_secondary_text_colorstring
curl -i -X PUT \
  https://docs.fluid.app/_mock/docs/apis/swagger/api/settings/checkout \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "checkout": {
      "collect_phone": true,
      "require_phone": true,
      "require_billing_zip": true,
      "checkout_primary_button_color": "string",
      "checkout_primary_text_color": "string",
      "checkout_secondary_button_color": "string",
      "checkout_secondary_text_color": "string"
    }
  }'

Responses

checkout settings updated

Bodyapplication/json
idintegerrequired
namestringrequired
primary_domain_hostnamestring or null
Example: "acme.com"
subdomainstring or null
Example: "acme"
logo_urlstring or null
Example: "https://acme.com/logo.png"
fluid_shopboolean or null
Example: true
collect_phoneboolean or null
Example: true
require_phoneboolean or null
Example: true
require_billing_zipboolean or null
Example: true
checkout_primary_button_colorstring or null
Example: "#000000"
checkout_primary_text_colorstring or null
Example: "#FFFFFF"
checkout_secondary_button_colorstring or null
Example: "#000000"
checkout_secondary_text_colorstring or null
Example: "#FFFFFF"
Response
application/json
{ "id": 0, "name": "string", "primary_domain_hostname": "acme.com", "subdomain": "acme", "logo_url": "https://acme.com/logo.png", "fluid_shop": true, "collect_phone": true, "require_phone": true, "require_billing_zip": true, "checkout_primary_button_color": "#000000", "checkout_primary_text_color": "#FFFFFF", "checkout_secondary_button_color": "#000000", "checkout_secondary_text_color": "#FFFFFF" }

Company Settings - Countries

Operations

Company Settings - Languages

Operations

Company Settings - Social Media

Operations

Company Settings - Warehouses

Operations

Contacts

Operations

Currencies

Operations

Customer Orders

Operations

CustomerNotes

Operations

Customers

Operations

Domains

Operations

Drop Zones

Operations

Droplets

Operations

Enrollment Packs

Operations

Enrollments

Operations

Fantasy Points

Operations

Fluid Pay

Operations

GlobalEmbeds

Operations

Inventory Levels

Operations

Multi-Factor Authentications

Operations

Notifications

Operations

Order Fulfillments

Operations

Orders

Operations

Pages

Operations

Payment

Operations

Payment Accounts

Operations

Payments

Operations

Paypal

Operations

Products

Operations

Public Companies

Operations

Redirects

Operations

Refunds

Operations

Roles

Operations

Shares

Operations

Subscription Orders

Operations

Subscription Plans

Operations

Subscriptions

Operations

Tracking Informations

Operations

Tree Nodes

Operations

Trees

Operations

Users

Operations

Variant Countries

Operations

Webhooks

Operations

returns a list of all droplet categories

Request

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

Responses

returns a list of droplet categories

Bodyapplication/json
droplet_categoriesArray of objects(DropletCategory)
metaobject
Response
application/json
{ "droplet_categories": [ {} ], "meta": { "request_id": "123e4567-e89b-12d3-a456-426614174000", "timestamp": "2021-01-01T00:00:00Z" } }