API ReferenceapipaymentsPOST /v1/admin/sync/telehealth-charge

POST /v1/admin/sync/telehealth-charge

Service: payments · operationId: (none)

Reconcile telehealth session charges with Stripe payment records

Required scopes

(no scope declared — review service config)

Responses

200 Sync completed

{
  "type": "object",
  "properties": {
    "synced": {
      "type": "integer"
    },
    "skipped": {
      "type": "integer"
    },
    "errors": {
      "type": "integer"
    }
  },
  "required": [
    "synced",
    "skipped",
    "errors"
  ]
}

500 Internal error

{
  "type": "object",
  "properties": {
    "error": {
      "type": "string"
    },
    "message": {
      "type": "string"
    }
  },
  "required": [
    "error",
    "message"
  ]
}

Example

curl -X POST https://payments.platform.loop.health/v1/admin/sync/telehealth-charge \
  -H "Authorization: Bearer $ACCESS_TOKEN"