Home
Home
  1. Mandates
  • Welcome
    • About Ontime
    • Overview
    • Test and Learn Projects
  • Authentication
  • Idempotency
  • Availability Check
    • Light Availability Check
      POST
    • Full Availability Check
      POST
  • Payment Management
    • Mandates
      • Create a new mandate
        POST
      • Cancel an existing mandate
        DELETE
      • Get a Mandate
        GET
      • Get many Mandates
        GET
    • Payment Requests
      • Instruct a new payment request
      • Cancel an existing payment request
      • Get a Payment
      • Get many Payments
  • Payouts
    • Get a Payout
      GET
    • Get Available Payouts
      GET
  • Webhooks
    • Mandate Created/Updated
    • Payment Request Created/Updated
    • Payout Created
  • Schemas
    • Schemas
      • PaymentManagement
        • MandateLimitations
        • MandateRecordResponse
        • MandateDeleteResponse
        • GetMandatesPagedResponse
        • MandateStatus
        • MandateRecordRequest
        • PaymentCreateRequest
        • PaymentResponse
        • PaymentDeleteResponse
        • GetPaymentsPagedResponse
        • PaymentStatus
        • AuthorisationSource
      • Payout
        • PayoutResponse
        • PayoutPaymentRequestItem
        • ListPayoutsResponse
      • Deprecated
        • Invitation
        • Consumer
        • PaymentMethod
        • ProductPaymentStatus
        • ProductStatus
        • PaymentRequestData
      • Webhook
        • Webhook
        • WebhookPaymentRequestPayload
        • WebhookMandatePayload
        • WebhookPayoutPayload
      • Core
        • ConsumerData
        • ProblemDetails
        • Metadata
        • PagingResponse
      • Availability
        • FullAvailabilityCheckRequest
        • FullAvailabilityCheckResponse
        • AvailabilityStatus
        • LightAvailabilityCheckRequest
        • LightAvailabilityCheckResponse
Home
Home
  1. Mandates

Get many Mandates

Developing
Cloud Mock
https://mock.apidog.com/m1/828215-0-default
Cloud Mock
https://mock.apidog.com/m1/828215-0-default
GET
https://mock.apidog.com/m1/828215-0-default
/mandates/search
OperationId:get_filtered_mandates
Provides a means to return an ordered, pages list of mandates of a given status. The madates will be return in the order of the date they were created.

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
OAuth 2.0
Client Credentials
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Token URL: https://{domain}.auth.{region}.amazoncognito.com
Scopes:
mandates:read-Can read payment mandates.
or
Query Params

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://mock.apidog.com/m1/828215-0-default/mandates/search?status&cursor=0&limit=50' \
--header 'x-api-key: <api-key>' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "results": {
        "mandates": [
            {
                "mandate_record": {
                    "start_date": "2025-12-30T05:12:47.710Z",
                    "end_date": "2025-05-11T02:34:29.609Z",
                    "authorisation_source": "web",
                    "status": "string",
                    "limitations": {
                        "currency": "TJS",
                        "maximum_payment_amount": 132600,
                        "percentage_of_payment_amount_accepted": 8
                    },
                    "id": "4e055866-1de4-4d76-9235-04da469dfe61",
                    "initiator_data": {
                        "consumer_data": {
                            "given_name": "Preston",
                            "family_name": "Dare",
                            "national_registration_number": "QQ999999A",
                            "email_address": "Jerrod.Roob@example.org",
                            "phone_number": "+16933072917"
                        }
                    },
                    "metadata": null
                }
            }
        ],
        "paging": {
            "limit": 5938,
            "has_more": true,
            "next_cursor": "9f367214-9776-d8dc-27b5-57e3ec3d4c11"
        }
    }
}
Previous
Get a Mandate
Next
Payment Requests