{
  "schemaVersion": "1.0",
  "item": {
    "slug": "systeme",
    "name": "Systeme.io",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/systeme",
    "canonicalUrl": "https://clawhub.ai/byungkyu/systeme",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/systeme",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=systeme",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "slug": "systeme",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T16:15:51.067Z",
      "expiresAt": "2026-05-16T16:15:51.067Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=systeme",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=systeme",
        "contentDisposition": "attachment; filename=\"systeme-1.0.5.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "systeme"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/systeme"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/systeme",
    "agentPageUrl": "https://openagent3.xyz/skills/systeme/agent",
    "manifestUrl": "https://openagent3.xyz/skills/systeme/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/systeme/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Systeme.io",
        "body": "Access the Systeme.io API with managed OAuth authentication. Manage contacts, tags, courses, communities, and subscriptions."
      },
      {
        "title": "Quick Start",
        "body": "# List contacts\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/systeme/api/contacts')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/systeme/{native-api-path}\n\nReplace {native-api-path} with the actual Systeme.io API endpoint path. The gateway proxies requests to api.systeme.io and automatically injects your API key."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Systeme.io connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=systeme&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'systeme'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"systeme\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Systeme.io connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/systeme/api/contacts')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Contact Operations",
        "body": "List Contacts\n\nGET /systeme/api/contacts\n\nQuery Parameters:\n\nlimit - Number of items per page (10-100, optional)\nstartingAfter - ID of last received item for pagination (optional)\norder - Sort order: asc or desc (default: desc, optional)\n\nGet Contact\n\nGET /systeme/api/contacts/{id}\n\nCreate Contact\n\nPOST /systeme/api/contacts\nContent-Type: application/json\n\n{\n  \"email\": \"john@example.com\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"phoneNumber\": \"+1234567890\",\n  \"locale\": \"en\",\n  \"fields\": [\n    {\n      \"slug\": \"custom_field_slug\",\n      \"value\": \"custom value\"\n    }\n  ]\n}\n\nUpdate Contact\n\nPATCH /systeme/api/contacts/{id}\nContent-Type: application/merge-patch+json\n\n{\n  \"firstName\": \"Jane\",\n  \"lastName\": \"Smith\"\n}\n\nDelete Contact\n\nDELETE /systeme/api/contacts/{id}"
      },
      {
        "title": "Tag Operations",
        "body": "List Tags\n\nGET /systeme/api/tags\n\nGet Tag\n\nGET /systeme/api/tags/{id}\n\nCreate Tag\n\nPOST /systeme/api/tags\nContent-Type: application/json\n\n{\n  \"name\": \"VIP Customer\"\n}\n\nUpdate Tag\n\nPUT /systeme/api/tags/{id}\nContent-Type: application/json\n\n{\n  \"name\": \"Premium Customer\"\n}\n\nDelete Tag\n\nDELETE /systeme/api/tags/{id}"
      },
      {
        "title": "Contact Tag Operations",
        "body": "Assign Tag to Contact\n\nPOST /systeme/api/contacts/{id}/tags\nContent-Type: application/json\n\n{\n  \"tagId\": 12345\n}\n\nRemove Tag from Contact\n\nDELETE /systeme/api/contacts/{id}/tags/{tagId}"
      },
      {
        "title": "Contact Field Operations",
        "body": "List Contact Fields\n\nGET /systeme/api/contact_fields\n\nCreate Contact Field\n\nPOST /systeme/api/contact_fields\nContent-Type: application/json\n\n{\n  \"name\": \"Company Name\",\n  \"slug\": \"company_name\"\n}\n\nUpdate Contact Field\n\nPATCH /systeme/api/contact_fields/{slug}\nContent-Type: application/merge-patch+json\n\n{\n  \"name\": \"Organization Name\"\n}\n\nDelete Contact Field\n\nDELETE /systeme/api/contact_fields/{slug}"
      },
      {
        "title": "Course Operations",
        "body": "List Courses\n\nGET /systeme/api/school/courses\n\nList Enrollments\n\nGET /systeme/api/school/enrollments\n\nCreate Enrollment\n\nPOST /systeme/api/school/courses/{courseId}/enrollments\nContent-Type: application/json\n\n{\n  \"contactId\": 12345,\n  \"accessType\": \"full_access\"\n}\n\nRequired Fields:\n\ncontactId - The ID of the contact to enroll\naccessType - Access type: full_access, partial_access, or dripping_content\n\nNote: If accessType is partial_access, you must also provide a modules array with module IDs.\n\nDelete Enrollment\n\nDELETE /systeme/api/school/enrollments/{id}"
      },
      {
        "title": "Community Operations",
        "body": "List Communities\n\nGET /systeme/api/community/communities\n\nList Memberships\n\nGET /systeme/api/community/memberships\n\nCreate Membership\n\nPOST /systeme/api/community/communities/{communityId}/memberships\nContent-Type: application/json\n\n{\n  \"contactId\": 12345\n}\n\nDelete Membership\n\nDELETE /systeme/api/community/memberships/{id}"
      },
      {
        "title": "Subscription Operations",
        "body": "List Subscriptions\n\nGET /systeme/api/payment/subscriptions\n\nCancel Subscription\n\nPOST /systeme/api/payment/subscriptions/{id}/cancel"
      },
      {
        "title": "Pagination",
        "body": "Systeme.io uses cursor-based pagination with the following parameters:\n\nGET /systeme/api/contacts?limit=50&startingAfter=12345&order=asc\n\nParameters:\n\nlimit - Number of items per page (10-100)\nstartingAfter - ID of the last item from the previous page\norder - Sort order: asc or desc (default: desc)\n\nResponse:\n\n{\n  \"items\": [...],\n  \"hasMore\": true\n}\n\nWhen hasMore is true, use the ID of the last item in items as startingAfter to get the next page."
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/systeme/api/contacts',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/systeme/api/contacts',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()"
      },
      {
        "title": "Create Contact with Tag",
        "body": "import os\nimport requests\n\n# Create contact\ncontact = requests.post(\n    'https://gateway.maton.ai/systeme/api/contacts',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'email': 'new@example.com',\n        'firstName': 'New',\n        'lastName': 'Contact'\n    }\n).json()\n\n# Assign tag\nrequests.post(\n    f'https://gateway.maton.ai/systeme/api/contacts/{contact[\"id\"]}/tags',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={'tagId': 12345}\n)"
      },
      {
        "title": "Notes",
        "body": "Systeme.io uses API key authentication (passed as X-API-Key header natively)\nThe gateway automatically handles auth header transformation\nUse application/merge-patch+json content type for PATCH requests\nContact, tag, course, and enrollment IDs are numeric integers\nRate limits are enforced via X-RateLimit-* headers\nSysteme.io validates email domains - only real email addresses with valid MX records are accepted\nThe subscriptions endpoint (/api/payment/subscriptions) may return 404 if payment features are not configured\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing Systeme.io connection or bad request401Invalid or missing Maton API key429Rate limited (check Retry-After header)4xx/5xxPassthrough error from Systeme.io API"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with systeme. For example:\n\nCorrect: https://gateway.maton.ai/systeme/api/contacts\nIncorrect: https://gateway.maton.ai/api/contacts"
      },
      {
        "title": "Resources",
        "body": "Systeme.io API Reference\nSysteme.io API Overview\nMaton Community\nMaton Support"
      }
    ],
    "body": "Systeme.io\n\nAccess the Systeme.io API with managed OAuth authentication. Manage contacts, tags, courses, communities, and subscriptions.\n\nQuick Start\n# List contacts\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/systeme/api/contacts')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/systeme/{native-api-path}\n\n\nReplace {native-api-path} with the actual Systeme.io API endpoint path. The gateway proxies requests to api.systeme.io and automatically injects your API key.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Systeme.io connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=systeme&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'systeme'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"systeme\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Systeme.io connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/systeme/api/contacts')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nContact Operations\nList Contacts\nGET /systeme/api/contacts\n\n\nQuery Parameters:\n\nlimit - Number of items per page (10-100, optional)\nstartingAfter - ID of last received item for pagination (optional)\norder - Sort order: asc or desc (default: desc, optional)\nGet Contact\nGET /systeme/api/contacts/{id}\n\nCreate Contact\nPOST /systeme/api/contacts\nContent-Type: application/json\n\n{\n  \"email\": \"john@example.com\",\n  \"firstName\": \"John\",\n  \"lastName\": \"Doe\",\n  \"phoneNumber\": \"+1234567890\",\n  \"locale\": \"en\",\n  \"fields\": [\n    {\n      \"slug\": \"custom_field_slug\",\n      \"value\": \"custom value\"\n    }\n  ]\n}\n\nUpdate Contact\nPATCH /systeme/api/contacts/{id}\nContent-Type: application/merge-patch+json\n\n{\n  \"firstName\": \"Jane\",\n  \"lastName\": \"Smith\"\n}\n\nDelete Contact\nDELETE /systeme/api/contacts/{id}\n\nTag Operations\nList Tags\nGET /systeme/api/tags\n\nGet Tag\nGET /systeme/api/tags/{id}\n\nCreate Tag\nPOST /systeme/api/tags\nContent-Type: application/json\n\n{\n  \"name\": \"VIP Customer\"\n}\n\nUpdate Tag\nPUT /systeme/api/tags/{id}\nContent-Type: application/json\n\n{\n  \"name\": \"Premium Customer\"\n}\n\nDelete Tag\nDELETE /systeme/api/tags/{id}\n\nContact Tag Operations\nAssign Tag to Contact\nPOST /systeme/api/contacts/{id}/tags\nContent-Type: application/json\n\n{\n  \"tagId\": 12345\n}\n\nRemove Tag from Contact\nDELETE /systeme/api/contacts/{id}/tags/{tagId}\n\nContact Field Operations\nList Contact Fields\nGET /systeme/api/contact_fields\n\nCreate Contact Field\nPOST /systeme/api/contact_fields\nContent-Type: application/json\n\n{\n  \"name\": \"Company Name\",\n  \"slug\": \"company_name\"\n}\n\nUpdate Contact Field\nPATCH /systeme/api/contact_fields/{slug}\nContent-Type: application/merge-patch+json\n\n{\n  \"name\": \"Organization Name\"\n}\n\nDelete Contact Field\nDELETE /systeme/api/contact_fields/{slug}\n\nCourse Operations\nList Courses\nGET /systeme/api/school/courses\n\nList Enrollments\nGET /systeme/api/school/enrollments\n\nCreate Enrollment\nPOST /systeme/api/school/courses/{courseId}/enrollments\nContent-Type: application/json\n\n{\n  \"contactId\": 12345,\n  \"accessType\": \"full_access\"\n}\n\n\nRequired Fields:\n\ncontactId - The ID of the contact to enroll\naccessType - Access type: full_access, partial_access, or dripping_content\n\nNote: If accessType is partial_access, you must also provide a modules array with module IDs.\n\nDelete Enrollment\nDELETE /systeme/api/school/enrollments/{id}\n\nCommunity Operations\nList Communities\nGET /systeme/api/community/communities\n\nList Memberships\nGET /systeme/api/community/memberships\n\nCreate Membership\nPOST /systeme/api/community/communities/{communityId}/memberships\nContent-Type: application/json\n\n{\n  \"contactId\": 12345\n}\n\nDelete Membership\nDELETE /systeme/api/community/memberships/{id}\n\nSubscription Operations\nList Subscriptions\nGET /systeme/api/payment/subscriptions\n\nCancel Subscription\nPOST /systeme/api/payment/subscriptions/{id}/cancel\n\nPagination\n\nSysteme.io uses cursor-based pagination with the following parameters:\n\nGET /systeme/api/contacts?limit=50&startingAfter=12345&order=asc\n\n\nParameters:\n\nlimit - Number of items per page (10-100)\nstartingAfter - ID of the last item from the previous page\norder - Sort order: asc or desc (default: desc)\n\nResponse:\n\n{\n  \"items\": [...],\n  \"hasMore\": true\n}\n\n\nWhen hasMore is true, use the ID of the last item in items as startingAfter to get the next page.\n\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/systeme/api/contacts',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/systeme/api/contacts',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()\n\nCreate Contact with Tag\nimport os\nimport requests\n\n# Create contact\ncontact = requests.post(\n    'https://gateway.maton.ai/systeme/api/contacts',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={\n        'email': 'new@example.com',\n        'firstName': 'New',\n        'lastName': 'Contact'\n    }\n).json()\n\n# Assign tag\nrequests.post(\n    f'https://gateway.maton.ai/systeme/api/contacts/{contact[\"id\"]}/tags',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/json'\n    },\n    json={'tagId': 12345}\n)\n\nNotes\nSysteme.io uses API key authentication (passed as X-API-Key header natively)\nThe gateway automatically handles auth header transformation\nUse application/merge-patch+json content type for PATCH requests\nContact, tag, course, and enrollment IDs are numeric integers\nRate limits are enforced via X-RateLimit-* headers\nSysteme.io validates email domains - only real email addresses with valid MX records are accepted\nThe subscriptions endpoint (/api/payment/subscriptions) may return 404 if payment features are not configured\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments\nError Handling\nStatus\tMeaning\n400\tMissing Systeme.io connection or bad request\n401\tInvalid or missing Maton API key\n429\tRate limited (check Retry-After header)\n4xx/5xx\tPassthrough error from Systeme.io API\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with systeme. For example:\nCorrect: https://gateway.maton.ai/systeme/api/contacts\nIncorrect: https://gateway.maton.ai/api/contacts\nResources\nSysteme.io API Reference\nSysteme.io API Overview\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/systeme",
    "publisherUrl": "https://clawhub.ai/byungkyu/systeme",
    "owner": "byungkyu",
    "version": "1.0.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/systeme",
    "downloadUrl": "https://openagent3.xyz/downloads/systeme",
    "agentUrl": "https://openagent3.xyz/skills/systeme/agent",
    "manifestUrl": "https://openagent3.xyz/skills/systeme/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/systeme/agent.md"
  }
}