LayUp Technologies AbsaDebiCheckService API

The AbsaDebiCheckService API from LayUp Technologies — 2 operation(s) for absadebicheckservice.

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/layup-technologies-absadebicheckservice-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

layup-technologies-absadebicheckservice-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: Layup endpoints AbsaDebiCheckService API
  version: 1.4.16
  description: 'Welcome to The Layup Swagger page. This page allows developers to interactively explore the API. For more detailed documentation see [The Layup documentation page](https://documentation.layup.co.za/).


    # Introduction


    ## What is LayUp


    LayUp is a lay-by payment solution. LayUp Schedules payments and ensures that your clients pay securely, effectively and on time. Depending on your parameters LayUp schedules a payment plan for your clients. Once a payment plan has been completed we notify you. There are 3 stories that are of importance to a merchant:


    1. Order Creation

    2. Deposit Received (and holding Stock for your client)

    3. Order Completion.


    LayUp allows you to take full control over the entire payment process if you wish to do so. We also provide a convenient front-end for users to use. The front-end should significantly reduce the time to integrate and get you started using LayUp as soon as possible.


    Once an order is completed a notification will be sent to the merchant so that you can provide the client with their product.


    ## How to use LayUp


    As a merchant who wants to place an order through LayUp, you want to send the relevant information to the LayUp API to create the order. The API will return an order ID. Unless your integration is using a custom user interface, you want to send the user to the LayUp customer payment widget. The URL for this widget is <u>https://shopper.layup.co.za/order/{orderId}</u> for production and <u>https://sandbox.layup.co.za/order/{orderId}</u> for sandbox.

    '
host: localhost:3000
schemes:
- http
- https
- wss
consumes:
- application/json
produces:
- application/json
security:
- apiKey:
  - read
  - write
tags:
- name: AbsaDebiCheckService
paths:
  /v1/absa/debicheck/output:
    post:
      operationId: AbsaDebiCheckService_output
      responses:
        '200':
          description: A successful response.
          schema:
            $ref: '#/definitions/modelAbsaDebiCheckResponse'
        '204':
          description: Successfully processed the request, no content.
        '403':
          description: Returned when the user does not have permission to access the resource.
        '404':
          description: Returned when the resource does not exist.
      parameters:
      - name: body
        in: body
        required: true
        schema:
          $ref: '#/definitions/modelAbsaDebiCheckOutputRequest'
      tags:
      - AbsaDebiCheckService
  /v1/absa/debicheck/reply:
    post:
      operationId: AbsaDebiCheckService_reply
      responses:
        '200':
          description: A successful response.
          schema:
            $ref: '#/definitions/modelAbsaDebiCheckResponse'
        '204':
          description: Successfully processed the request, no content.
        '403':
          description: Returned when the user does not have permission to access the resource.
        '404':
          description: Returned when the resource does not exist.
      parameters:
      - name: body
        in: body
        required: true
        schema:
          $ref: '#/definitions/modelAbsaDebiCheckReplyRequest'
      tags:
      - AbsaDebiCheckService
definitions:
  modelAbsaDebiCheckOutputTransaction:
    type: object
    properties:
      paymentId:
        type: string
      accepted:
        type: boolean
      contractReference:
        type: string
      mandateReference:
        type: string
      sequenceType:
        type: string
      amountInCents:
        type: integer
        format: int32
      effectiveDate:
        type: string
      originalEndToEndTransactionIdentifier:
        type: string
      error:
        type: string
  modelAbsaDebiCheckResponse:
    type: object
  modelAbsaDebiCheckReplyRequest:
    type: object
    properties:
      transmissionNumber:
        type: string
      transmissionDate:
        type: string
      transmissionStatus:
        type: string
      fileStoragePath:
        type: string
      rejectedReasons:
        type: array
        items:
          type: object
          $ref: '#/definitions/modelRejectedReasons'
  modelAbsaDebiCheckOutputRequest:
    type: object
    properties:
      transmissionDate:
        type: string
      fileStoragePath:
        type: string
      transactions:
        type: array
        items:
          type: object
          $ref: '#/definitions/modelAbsaDebiCheckOutputTransaction'
  modelRejectedReasons:
    type: object
    properties:
      contractReference:
        type: string
      reason:
        type: string
securityDefinitions:
  apiKey:
    type: apiKey
    name: apikey
    in: header