Roku · Schema

RefundSubscriptionRequest

RefundSubscriptionRequest schema from Roku Pay Web Services

StreamingTelevisionMediaEntertainmentConnected TVConsumer Electronics

Properties

Name Type Description
partnerAPIKey string
rokuCustomerId string
transactionId string
refundAmount number If omitted, a full refund is issued.
currency string
reason string
View JSON Schema on GitHub

JSON Schema

pay-web-services-refund-subscription-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/roku/refs/heads/main/json-schema/pay-web-services-refund-subscription-request-schema.json",
  "title": "RefundSubscriptionRequest",
  "description": "RefundSubscriptionRequest schema from Roku Pay Web Services",
  "type": "object",
  "properties": {
    "partnerAPIKey": {
      "type": "string"
    },
    "rokuCustomerId": {
      "type": "string"
    },
    "transactionId": {
      "type": "string"
    },
    "refundAmount": {
      "type": "number",
      "format": "float",
      "description": "If omitted, a full refund is issued."
    },
    "currency": {
      "type": "string"
    },
    "reason": {
      "type": "string"
    }
  },
  "required": [
    "partnerAPIKey",
    "rokuCustomerId",
    "transactionId"
  ]
}