Shippo · Schema

Refund

EcommerceLabelsLogisticsReturnsShippingTracking

Properties

Name Type Description
object_id string
status string
transaction string Transaction object ID being refunded
object_created string
object_updated string
View JSON Schema on GitHub

JSON Schema

shippo-refund-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Refund",
  "title": "Refund",
  "type": "object",
  "properties": {
    "object_id": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "QUEUED",
        "PENDING",
        "SUCCESS",
        "ERROR"
      ]
    },
    "transaction": {
      "type": "string",
      "description": "Transaction object ID being refunded"
    },
    "object_created": {
      "type": "string",
      "format": "date-time"
    },
    "object_updated": {
      "type": "string",
      "format": "date-time"
    }
  }
}