Repairy Partner API
  1. Service Reminder
Repairy Partner API
  • Welcome ๐Ÿ‘‹
  • Get Started
  • HTTP Headers
  • Authorization
  • Workshops
  • Bookings
  • Quotes
  • Service Reminder
  • Data Reporting
  • Booking URL
  • Error Codes
  • Technical Support
  • Changelog
  • Webhook
  • Additional Services
  • Service Catalog
  • APIs
    • Authorization
      • Access Token
      • Refresh Token
    • Workshops
      • Availabilities
      • Service Catalog
    • Bookings
      • Booking Request with Service Catalog (beta)
      • Booking Request
      • Booking Information
      • Update Booking Information
      • Update Booking Status
    • Quotes
      • Quote Request
    • Service Reminder
      • Service Reminder Notification
        POST
      • Service Reminder Information
        GET
    • Data Reporting
      • Partner Report
  • Data Structures
    • AuthResponse
    • Availability
    • CustomAvailability
    • Car
    • Customer
    • Booking
    • BookingUpdateRequest
    • BookingStatusUpdateConfig
    • Quote
    • ServiceHistory
    • ServiceReminder
    • WebhookRequest
    • ServiceCatalog
  1. Service Reminder

Service Reminder Information

Cloud Mock
https://mock.apidog.com/m1/839892-0-default
Cloud Mock
https://mock.apidog.com/m1/839892-0-default
GET
/reminders/services/{id}

Fetch Service Reminder Information#

To retrieve the details of a service reminder, you must provide the Service Reminder ID in your request. This ID acts as a unique identifier for the reminder you want to access.

Requirements#

Before making the request, please ensure the following:
You have a valid Service Reminder ID that corresponds to the reminder you want to fetch.
You have the required permissions to access the reminder details. If youโ€™re unsure about your access level, please check with your admin or system support.

Response Data#

Once your request is successful, the response will provide the following important details:
Reminder Status: The current status of the service reminder. This can be one of the following:
Pending: The reminder has been acknowledged, but action has not yet been taken. It is waiting to be addressed.
Sent: The reminder has been sent out, but no action has been taken, and it is awaiting further attention.
Converted: The reminder has been successfully processed and is now active or in effect.
Customer Information: Detailed information about the customer linked to the service reminder, such as:
Customer name
Contact details
Address information
Reminder Code: A unique identifier assigned to each service reminder. This helps in distinguishing different reminders.
Associated Booking and Service History: This section includes past services and bookings related to the reminder, showing what has been done before:
Past bookings
Service history

Request

Path Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://mock.apidog.com/m1/839892-0-default/reminders/services/' \
--header 'X-Partner-ID: PARTNER_ID' \
--header 'Authorization: Bearer ACCESS_TOKEN' \
--header 'Content-Type: application/json'

Responses

๐ŸŸข200OK
application/json
OK
Headers

Body

Example
{
    "success": true,
    "reminder": {
        "id": "",
        "code": "",
        "carId": "",
        "customerId": "",
        "workshopId": "",
        "lastServiceId": "",
        "lastBookingId": "",
        "newBookingId": "",
        "externalId": "",
        "car": {
            "id": "",
            "customerId": "",
            "rego": "",
            "year": 0,
            "make": "",
            "model": "",
            "badge": "",
            "vin": ""
        },
        "customer": {
            "id": "",
            "workshopId": "",
            "name": "",
            "firstName": "",
            "lastName": "",
            "email": "",
            "phone": "",
            "company": "",
            "address": "",
            "postcode": "",
            "suburb": ""
        },
        "category": "automated",
        "status": "pending",
        "date": "2025-07-03T03:30:00Z",
        "convertedDate": "2025-07-04T00:00:00Z",
        "smsSent": "2025-07-03T03:30:00Z",
        "smsSid": "",
        "customerPhone": "",
        "customerEmail": "",
        "emailSid": "",
        "emailSent": "2025-07-03T03:30:00Z",
        "createdAt": "2025-07-03T03:30:00Z",
        "updatedAt": "2025-07-04T00:00:00Z"
    }
}
๐ŸŸ 404Record Not Found
Modified atย 2025-04-03 04:21:34
Previous
Service Reminder Notification
Next
Partner Report
Built with