Skip to main content

End-point to link repair orders for all trips of the dealer sent in the request. This end-point would update all references of repair order for a trip.

Query Parameters
    toReconcileAllROs boolean

    Reconcile all ROs

Header Parameters
    authorization string

    Base64 encoded basic auth

Request Body

Link repair orders request

    dealerDepartmentUUIDList string[]
    dealerUuids string[]
    endDate string
    requesterUserUUID string
    source string

    Possible values: [DEALER_APP, WEB, PND_API, EXTERNAL_CONTROLLER]

    startDate string
Responses

OK


Schema
    error object
    errorCode string
    errorDescription string
    metadata object
    property name* string
    resultMap object
    property name* ResultMap
    map object
    property name* int32
    statusCode int32
    warnings object[]
  • Array [
  • warningCode string
    warningDescription string
  • ]
POST /v3/dealerorder/link

Request

Base URL
//api.mykaarma.com/pickupdelivery
toReconcileAllROs — query
authorization — header
Body
{
"dealerDepartmentUUIDList": [
"string"
],
"dealerUuids": [
"string"
],
"endDate": "string",
"requesterUserUUID": "string",
"source": "DEALER_APP",
"startDate": "string"
}
curl / cURL
curl -L -X POST '//api.mykaarma.com/pickupdelivery/v3/dealerorder/link' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUUIDList": [
"string"
],
"dealerUuids": [
"string"
],
"endDate": "string",
"requesterUserUUID": "string",
"source": "DEALER_APP",
"startDate": "string"
}'