Flexpoint Docs
Go back
  • Getting Started
  • Getting Started
    • Setup your Flexpoint Store
      • How to Build & Launch Your Flexpoint Store in 20 Mins
      • How to Upload or Change Your Profile Picture
      • How to Change Your Flexpoint Username
      • How to Add or Update Your Profile Bio
      • How to Add Your Social Media Accounts to Your Flexpoint Store
      • How to Rearrange Products Your Flexpoint Store
    • Build Your First Product
      • The Best Products to Sell When Getting Started
      • How to Choose What To Sell To Your Audience
    • Setting Up Payments
      • Flexpoint, Stripe & Wise Transaction Fees
      • How to Collect Sales Tax with Stan
      • How to Connect Flexpoint with Wise
      • I Connected the Wrong Stripe Account! What Do I Do Now?
  • Products
    • Affiliate Share Feature
    • Coaching Calls
      • How to Setup Your Calendar Availability
    • Live Event
      • How to host exclusive coaching sessions or events with multiple customers
    • Digital Download
      • Sell a Digital Download Product
    • Community Hub
      • How to host your community or social group link
    • Services
      • How to sell your service and get paid easily by using Flexpoint service product?
    • Ecommerce Affiliate
      • How to integrate an E-Commerce Affiliate or any external link using the Flexflow product.
    • Flexpoint Affiliate
      • how to generate income by referring friends through the Flexpoint affiliate
  • Income
    • Setting Up Your Payments
      • How to Connect Flexpoint with Wise
      • How to add Bkash account
    • Cashing Out Your Income
      • How to Cash Out Inside Flexpoint
    • Managing Stripe
    • Managing Wise
    • Local Bank Account
      • How to add local bank account
  • Customers
    • Managing Your Customers
      • How to View Customers Who Have Purchased Your Product?
    • Support for Your Customers
      • How to Access a Course I Purchased?
  • Analytics
    • Store Analytics
  • Settings
    • Billing & Subscription
      • How to Cancel Your Flexpoint account
      • How to Manage Flexpoint Subscription Plan?
    • Integrations
      • How to connect flexpoint with Google Calendar
      • How to connect flexpoint with Zoom
    • Store Settings
      • How to Update Your Payment Details
  • More Guides
    • Trust & Safety
    • Advanced Pricing
    • Referral Program
      • What is Flexpoint Referral Program?
      • How to Add a Flexpoint Referral Link Product to Your Store?
      • Can I Continue Receiving Referral Bonuses if Referral friend Cancel their Subscription?
    • FAQ's
      • What is Flexpoint?
      • Who is Flexpoint for?
      • What payment methods does Flexpoint support?
      • Does Flexpoint charge transaction fees or take commissions?
      • Does Flexpoint handle multi-currency transactions?
      • Is Flexpoint secure?
      • Can I integrate other tools with Flexpoint?
      • How much does Flexpoint cost?
Powered by GitBook
On this page
  1. Products

Community Hub

PreviousSell a Digital Download ProductNextHow to host your community or social group link

Last updated 2 months ago

You can sync GitBook pages with an OpenAPI or Swagger file or a URL to include auto-generated API methods in your documentation.

OpenAPI block

GitBook's OpenAPI block is powered by , so you can test your APIs directly from your docs.

Scalar
  • OpenAPI block
  • POSTAdd a new pet to the store.

Add a new pet to the store.

post

Add a new pet to the store.

Authorizations
Body
idinteger · int64OptionalExample: 10
namestringRequiredExample: doggie
photoUrlsstring[]Required
statusstring · enumOptional

pet status in the store

Possible values:
Responses
200
Successful operation
400
Invalid input
422
Validation exception
default
Unexpected error
post
POST /api/v3/pet HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 133

{
  "id": 10,
  "name": "doggie",
  "category": {
    "id": 1,
    "name": "Dogs"
  },
  "photoUrls": [
    "text"
  ],
  "tags": [
    {
      "id": 1,
      "name": "text"
    }
  ],
  "status": "available"
}
{
  "id": 10,
  "name": "doggie",
  "category": {
    "id": 1,
    "name": "Dogs"
  },
  "photoUrls": [
    "text"
  ],
  "tags": [
    {
      "id": 1,
      "name": "text"
    }
  ],
  "status": "available"
}