Cash App Billing Agreements (Deprecated) API

The Billing Agreements (Deprecated) API from Cash App — 0 operation(s) for billing agreements (deprecated).

Documentation

Specifications

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/cash-app-billing-agreements-deprecated-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

cash-app-billing-agreements-deprecated-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Billing Agreements (Deprecated) API
  version: 1.0.0
servers:
- url: https://global-api-sandbox.afterpay.com
  description: Sandbox
- url: https://global-api.afterpay.com
  description: Production
tags:
- name: Billing Agreements (Deprecated)
paths: {}
webhooks:
  agreement-status-updated:
    post:
      operationId: agreement-status-updated
      summary: Billing agreement status updated
      description: Webhook notification sent when a billing agreement's status changes
      parameters:
      - name: User-Agent
        in: header
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Webhook received successfully
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                agreementToken:
                  type: string
                  description: Token identifying the billing agreement
                status:
                  $ref: '#/components/schemas/WebhooksAgreementStatusUpdatedPayloadContentApplicationJsonSchemaStatus'
                  description: Current status of the agreement
                reasons:
                  type: array
                  items:
                    type: string
                  description: List of reasons for the status update such as {PAYMENT_METHOD_EXPIRED, PENDING_RENEWAL, ACCOUNT_DEACTIVATED, USER_CANCELLED}
                message:
                  type:
                  - string
                  - 'null'
                  description: Optional message providing additional context
                dateTime:
                  type: string
                  format: date-time
                  description: Timestamp of the status update
              required:
              - agreementToken
              - status
              - reasons
              - dateTime
      tags:
      - Billing Agreements (Deprecated)
components:
  schemas:
    WebhooksAgreementStatusUpdatedPayloadContentApplicationJsonSchemaStatus:
      type: string
      enum:
      - ACTIVE
      - INACTIVE
      - TERMINATED
      description: Current status of the agreement
      title: WebhooksAgreementStatusUpdatedPayloadContentApplicationJsonSchemaStatus
  securitySchemes:
    sec0:
      type: http
      scheme: basic