Iaptic MCP Server

Official

customer_add_purchase

Manually associate a customer with a purchase.

  • Links a purchase to a specific customer
  • Takes priority over receipt validation links
  • Useful for manual purchase management
  • Purchase format should be "platform:purchaseId", for example apple:123109519983
  • Required: customerId and purchaseId

Input Schema

NameRequiredDescriptionDefault
customerIdYesApplication username of the customer
purchaseIdYesID of the purchase to associate

Input Schema (JSON Schema)

{ "properties": { "customerId": { "description": "Application username of the customer", "type": "string" }, "purchaseId": { "description": "ID of the purchase to associate", "type": "string" } }, "required": [ "customerId", "purchaseId" ], "type": "object" }