Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

OnePipe PWT is growing, and there’s a need to have a plan for managing Mandates. Especially for bundlers.

Learnings from customers like Omnibiz have led to several conversations about making Mandate a service on OnePipe.

Some of these issues are;

  1. How to know if there’s a pending mandate for a customer

  2. How to get all pending mandates on an account

  3. How to delete mandate(s)

If this is the final solution, the plan is to have the following services;

  • Create Mandate

  • Delete Mandate

  • Get Mandates

Create Mandate

This service is used to create a new mandate for a customer, the customer_ref needs to have an existing account number(s) tied to it with the calling APP;

Request

{
    "request_ref": "{{request-ref}}",
    "request_type": "open_account",
    "auth": {
        "type": null,
        "secure": null,
        "auth_provider": "OnePipe",
        "route_mode": null
    },
    "transaction": {
        "mock_mode": "Live",
        "transaction_ref": "{{transaction-ref}}",
        "transaction_desc": "A random transaction",
        "transaction_ref_parent": null,
        "amount": 0,
        "customer": {
            "customer_ref": "{{phone_number}}",
            "firstname": "Akin",
            "surname": "Olunloye",
            "email": "akin@gmail.com",
            "mobile_no": "2349066870818"
        },
        "meta": {
        },
        "details": {
            "grb_status": "pwt-active",
            "pwt_item_description": "Order fee",
    "pwt_item_code": "{{payment-item-code}}", 
    "pwt_item_amount": "5000",
    "mandate_type": "STATIC|FIXED|FORCED"
        }
    }
}

Response: PendingFulfilment

{
  "status": "PendingFulfilment",
  "message": "Request processed successfully",
  "data": {
    "provider_response_code": "00",
    "provider": "CheddaAccount",
    "errors": null,
    "error": null,
    "provider_response": {
      "account_number": "9012807653",
      "mandate_id": "3949004",
      "mandate_desc": "A bottle of beer",
      "mandate_type": "STATIC|FIXED|FORCED",
      "account_reference": "2349066870818",
      "account_name": "Akin Olunloye",
      "currency_code": "NGN",
      "customer_email": "uju@gmail.com",
      "bank_name": "Polaris Bank Limited",
      "bank_code": "076",
      "status": "PendingFulfilment",
      "created_on": "2021-11-01-19-11-55",
    }
  }
}

Get Mandates

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.