Salesforce · Schema

Status201-UpdateTransactionPaymentWithExternalIds1

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
successes integer
failures integer
notProcessed integer
details array
View JSON Schema on GitHub

JSON Schema

salesforce-status201-update-transaction-payment-with-external-ids1-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "successes": {
      "type": "integer",
      "example": 10
    },
    "failures": {
      "type": "integer",
      "example": 10
    },
    "notProcessed": {
      "type": "integer",
      "example": 10
    },
    "details": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "success": {
            "type": "boolean",
            "example": true
          },
          "links": {
            "type": "object",
            "properties": {
              "gifttransaction": {
                "type": "object",
                "properties": {
                  "href": {
                    "type": "string",
                    "example": "example_value"
                  },
                  "id": {
                    "type": "string",
                    "example": "abc123"
                  }
                },
                "required": [
                  "href",
                  "id"
                ]
              }
            },
            "required": [
              "gifttransaction"
            ]
          }
        },
        "required": [
          "success",
          "links"
        ]
      }
    }
  },
  "required": [
    "successes",
    "failures",
    "notProcessed",
    "details"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Status201-UpdateTransactionPaymentWithExternalIds1"
}