Skip to main content
GET
/
settings
/
profiles
Get Profile Settings
curl --request GET \
  --url https://staging-api.puppetvendors.com/settings/profiles \
  --header 'x-access-token: <api-key>'

Documentation Index

Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt

Use this file to discover all available pages before exploring further.

V2 Preview — This endpoint is part of the V2 API preview. Breaking changes may occur.

Overview

Retrieve the authenticated vendor’s profile settings grouped by portal tabs: information, socialMedia, contactInfo, policies, vacation, and others. Vendor scope required.

Response

200
{
  "success": true,
  "data": {
    "information": {
      "description": "Handmade artisan products",
      "businessAddress": {
        "address1": "123 Main St",
        "city": "Austin",
        "state": "TX",
        "postalCode": "78701",
        "country": "US"
      }
    },
    "socialMedia": {
      "instagram": "myshop",
      "website": "example.com"
    },
    "contactInfo": {
      "email": "vendor@example.com",
      "phone": "+15555550123"
    },
    "policies": {
      "shippingPolicy": "Ships in 2 business days",
      "returnsPolicy": "30-day return policy"
    },
    "vacation": {
      "enabled": false
    },
    "others": {
      "hasTax": true,
      "vendorTaxRate": 8.25
    }
  }
}

Example

curl -X GET "https://staging-api.puppetvendors.com/settings/profiles" \
  -H "x-access-token: YOUR_VENDOR_JWT"