Skip to main content
GET
/
creditapps
/
{id}
Retrieve a Credit App
curl --request GET \
  --url https://commerce.driv.ly/api/creditapps/{id}
{
  "data": {
    "id": "<string>",
    "preApproval": "<string>",
    "consumer": "<string>",
    "vehicle": "<string>",
    "provider": "TSG",
    "providerResponse": {},
    "coApplicantSSN": "<string>",
    "coApplicantPhoneNumber": "<string>",
    "coApplicantEmail": "<string>",
    "coApplicantBirthDate": "2023-12-25",
    "coApplicantLastName": "<string>",
    "coApplicantFirstName": "<string>",
    "ssn": "<string>",
    "phoneNumber": "<string>",
    "email": "<string>",
    "birthDate": "2023-12-25",
    "lastName": "<string>",
    "firstName": "<string>",
    "coApplicantConsumer": "<string>",
    "toProvider": true
  },
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.driv.ly/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string
required

Credit App is uniquely identified by id

Query Parameters

depth
integer

The number of levels of related objects to include in the response

Response

Credit App Found

data
Credit App · object
Example:
{
"id": "crapp_4ks9j3k2d0d2",
"ssn": "123-45-6789",
"email": "john.doe@example.com",
"vehicle": "Vehicle ID",
"lastName": "Doe",
"consumer": "Consumer ID",
"birthDate": "1984-09-20",
"firstName": "John",
"phoneNumber": "555-0199",
"preApproval": "Pre-Approval ID",
"coApplicantSSN": "234-56-7890",
"coApplicantEmail": "jane.doe@example.com",
"coApplicantLastName": "Doe",
"coApplicantConsumer": "Consumer ID",
"coApplicantBirthDate": "1990-07-12",
"coApplicantFirstName": "Jane",
"coApplicantPhoneNumber": "555-6789"
}
success
boolean