Cellulant Acknowledgement API

Acknowledge successful or partial payments back to the platform.

Operations 1

POST /v3/checkout-api/acknowledgement/request Acknowledge Payment #

Documentation

Specifications

Schemas & Data

Other Resources

🔗
Webhooks
https://docs.tingg.africa/reference/4-implement-webhook-via-callback-url-1
🔗
JSONLD
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/json-ld/cellulant-context.jsonld
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/examples/cellulant-create-express-checkout-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/examples/cellulant-post-payment-example.json
🔗
Examples
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/examples/cellulant-send-engagement-example.json
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/arazzo/cellulant-charge-with-otp-notification-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/arazzo/cellulant-check-balance-and-payout-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/arazzo/cellulant-checkout-poll-and-acknowledge-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/arazzo/cellulant-checkout-with-sms-notification-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/arazzo/cellulant-custom-checkout-charge-and-poll-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/arazzo/cellulant-express-checkout-and-poll-status-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/arazzo/cellulant-get-bill-and-pay-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/arazzo/cellulant-payout-query-and-refund-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/arazzo/cellulant-post-payout-and-query-status-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/cellulant/refs/heads/main/arazzo/cellulant-validate-and-post-payout-workflow.yml

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/cellulant-acknowledgement-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

cellulant-acknowledgement-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cellulant Tingg Checkout Acknowledgement API
  description: 'Tingg Checkout 3.0 — accept payments across 25+ African markets through

    a single integration. Supports Express Checkout (hosted/modal) and Custom

    Checkout (host-to-host) for mobile money, cards, and direct bank transfer.

    '
  version: 3.0.0
  contact:
    name: Cellulant Developer Support
    url: https://developer.tingg.africa
    email: developer@cellulant.io
  license:
    name: Cellulant Terms of Service
    url: https://www.cellulant.io/terms
servers:
- url: https://api.tingg.africa
  description: Production
- url: https://api-approval.tingg.africa
  description: Sandbox
security:
- BearerAuth: []
  ApiKeyAuth: []
tags:
- name: Acknowledgement
  description: Acknowledge successful or partial payments back to the platform.
paths:
  /v3/checkout-api/acknowledgement/request:
    post:
      summary: Acknowledge Payment
      description: Send the final or partial delivered status for a checkout transaction back to the platform.
      operationId: acknowledgePayment
      tags:
      - Acknowledgement
      parameters:
      - $ref: '#/components/parameters/ApiKey'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AcknowledgementRequest'
            examples:
              AcknowledgementRequestExample:
                $ref: '#/components/examples/AcknowledgementRequestExample'
      responses:
        '200':
          description: Acknowledgement logged
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcknowledgementResponse'
        4XX:
          $ref: '#/components/responses/ErrorResponse'
components:
  schemas:
    AcknowledgementResponse:
      type: object
      properties:
        status_code:
          type: integer
        status_description:
          type: string
    AcknowledgementRequest:
      type: object
      required:
      - acknowledgement_type
      - acknowledgment_reference
      - merchant_transaction_id
      - service_code
      - status_code
      - currency_code
      properties:
        acknowledgement_amount:
          type: number
          format: double
          description: Required when acknowledgement_type is Partial.
        acknowledgement_type:
          type: string
          enum:
          - Full
          - Partial
        acknowledgement_narration:
          type: string
        acknowledgment_reference:
          type: string
        merchant_transaction_id:
          type: string
        service_code:
          type: string
        status_code:
          type: integer
          description: 183 = successful, 180 = rejected, 188 = received, will be acknowledged later.
        currency_code:
          type: string
    Error:
      type: object
      properties:
        status_code:
          type: integer
        status_description:
          type: string
        errors:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
              message:
                type: string
  parameters:
    ApiKey:
      name: apikey
      in: header
      required: true
      description: Merchant API key issued in the Tingg integration dashboard.
      schema:
        type: string
  responses:
    ErrorResponse:
      description: Error response
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  examples:
    AcknowledgementRequestExample:
      summary: Acknowledge a successful payment
      value:
        acknowledgement_type: Full
        acknowledgement_narration: Goods delivered
        acknowledgment_reference: ACK-001
        merchant_transaction_id: MX-2026-05-24-0001
        service_code: TINGGSVC001
        status_code: 183
        currency_code: KES
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
      description: Merchant apiKey issued in the Tingg integration dashboard.