curl --request GET \
--url https://api.yourjobsearchgenius.ai/v1/customers/{_id} \
--header 'Authorization: Bearer <token>'{
"data": {
"_id": "507f1f77bcf86cd799439011",
"firstName": "John",
"lastName": "Doe",
"email": "[email protected]",
"accountStatus": "active",
"onboardingCompleted": true,
"createdAt": "2024-01-01T00:00:00Z",
"subscriptionId": "sub_123456789",
"subscriptionStatus": "active",
"autoLogin": {
"autoLoginUrl": "https://app.yourjobsearchgenius.ai/auto-login?code=abc123",
"autoLoginCode": "abc123"
},
"engagementStats": {
"resumesCount": 5,
"interviewsCount": 8,
"jobTracking": {
"totalJobs": 30,
"statusBreakdown": {
"applied": 15,
"interviewing": 5,
"offered": 2,
"rejected": 8
}
},
"mockInterviews": {
"totalInterviews": 8,
"interviews": [
{
"_id": "507f1f77bcf86cd799439013",
"title": "Software Engineer Interview",
"stageType": "technical",
"difficulty": "medium",
"isCompleted": true,
"createdAt": "2024-01-10T14:30:00Z",
"takeCount": 3,
"averageScore": 82.3,
"allTakes": [
{
"_id": "507f1f77bcf86cd799439012",
"title": "Software Engineer Interview",
"stageType": "technical",
"difficulty": "medium",
"isCompleted": true,
"createdAt": "2024-01-10T14:30:00Z",
"score": 85.5
}
]
}
]
},
"offerNegotiationsCount": 2,
"contactsCount": 12,
"coverLettersCount": 7
},
"lastLoginDate": "2024-01-15T10:30:00Z",
"subscriptionPackageName": "Premium Plan",
"subscriptionFrequency": "monthly",
"subscriptionCurrentPeriodEnd": "2024-02-01T00:00:00Z"
},
"success": true
}Retrieves detailed information about a specific customer including engagement statistics.
curl --request GET \
--url https://api.yourjobsearchgenius.ai/v1/customers/{_id} \
--header 'Authorization: Bearer <token>'{
"data": {
"_id": "507f1f77bcf86cd799439011",
"firstName": "John",
"lastName": "Doe",
"email": "[email protected]",
"accountStatus": "active",
"onboardingCompleted": true,
"createdAt": "2024-01-01T00:00:00Z",
"subscriptionId": "sub_123456789",
"subscriptionStatus": "active",
"autoLogin": {
"autoLoginUrl": "https://app.yourjobsearchgenius.ai/auto-login?code=abc123",
"autoLoginCode": "abc123"
},
"engagementStats": {
"resumesCount": 5,
"interviewsCount": 8,
"jobTracking": {
"totalJobs": 30,
"statusBreakdown": {
"applied": 15,
"interviewing": 5,
"offered": 2,
"rejected": 8
}
},
"mockInterviews": {
"totalInterviews": 8,
"interviews": [
{
"_id": "507f1f77bcf86cd799439013",
"title": "Software Engineer Interview",
"stageType": "technical",
"difficulty": "medium",
"isCompleted": true,
"createdAt": "2024-01-10T14:30:00Z",
"takeCount": 3,
"averageScore": 82.3,
"allTakes": [
{
"_id": "507f1f77bcf86cd799439012",
"title": "Software Engineer Interview",
"stageType": "technical",
"difficulty": "medium",
"isCompleted": true,
"createdAt": "2024-01-10T14:30:00Z",
"score": 85.5
}
]
}
]
},
"offerNegotiationsCount": 2,
"contactsCount": 12,
"coverLettersCount": 7
},
"lastLoginDate": "2024-01-15T10:30:00Z",
"subscriptionPackageName": "Premium Plan",
"subscriptionFrequency": "monthly",
"subscriptionCurrentPeriodEnd": "2024-02-01T00:00:00Z"
},
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The customer's unique identifier
"507f1f77bcf86cd799439011"