# Loyal Spark Update Program Config

> Loyal Spark Update Program Config is a paid API for AI agents from api.loyalspark.online, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Updates the configuration of an onchain loyalty rewards program on Base L2 via the Loyal Spark MCP gateway

## Facts

- Endpoint: POST https://api.loyalspark.online/x402-gateway/mcp-tools/update_program_config
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/loyal-spark-update-program-config-6748d3d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9AQ8y2KoGki0UPdKm_pS6

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability loyal-spark-update-program-config-6748d3d6 -d '<json body>'
```

Example prompt: Update my Loyal Spark loyalty program config to change the reward earn rate to 10 tokens per dollar spent and set the minimum redemption threshold to 500 tokens — program ID is lsp_abc123.

## When to prefer this

Use this endpoint when you need to programmatically update an existing loyalty program's configuration on the Loyal Spark platform — such as changing reward rates, redemption thresholds, or token parameters — especially from an AI agent workflow or automated pipeline using the MCP tool interface on Base L2.

## Known failure modes

- Invalid or missing program ID returns an error
- Unauthorized access if the caller does not own the program
- Invalid configuration parameter values cause validation errors
- Onchain transaction failure if Base L2 network is congested
- Payment failure if 0.01 USDC is not available for the x402 gateway call
- Rate limiting if too many config updates are submitted in quick succession

## How this service works

Onchain loyalty protocol on Base L2. Launch B20 rewards, earn and redeem tokens, trade P2P, automate with AI agents via REST and MCP.

## Output

A JSON response confirming the updated loyalty program configuration, including the new settings, program ID, and any onchain transaction reference reflecting the state change on Base L2.

## Example request

```json
{
 "id": 1,
 "method": "tools/call",
 "params": {
  "name": "get_platform_info",
  "arguments": {}
 },
 "jsonrpc": "2.0"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "toolName",
    "inputSchema"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "mcp"
    },
    "example": {
     "type": "object"
    },
    "toolName": {
     "type": "string"
    },
    "transport": {
     "enum": [
      "streamable-http",
      "sse"
     ],
     "type": "string"
    },
    "description": {
     "type": "string"
    },
    "inputSchema": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/loyal-spark-update-program-config-6748d3d6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.loyalspark.online](https://www.zero.xyz/host/api.loyalspark.online/llms.txt)
