curl --request GET \
--url https://fulfillment.noyo.com/api/v1/issues/{issue_id}
{
"carrier_id": "8fac0992-933a-4743-8dab-0d606ef2569e",
"carrier_issue_code": "MISSING_SSN",
"carrier_issue_details": "Social Security Number is missing for employee",
"created": 1697380200,
"employee_id": "7027d416-3bed-43e8-b824-508d9c0d323e",
"group_id": "436fb487-bb75-42d4-9651-7b1471a8940e",
"id": "dd9a1813-34f7-4c7e-86bc-f041f2cbd9a1",
"issue_key": "a1b2c3d4e5f6789012345678901234567890123456789012345678901234567890",
"last_seen": "2023-10-15T14:30:00Z",
"member_id": "7027d416-3bed-43e8-b824-508d9c0d323e",
"member_type": "employee",
"modified": 1697380200,
"resolution_method": null,
"resolved_at": null,
"status": "open",
"version": "ea38e798-cd61-4fa2-b485-d1c5b87a61af"
}
Get the details of a specific Issue by its unique identifier.
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/issues/{issue_id}
{
"carrier_id": "8fac0992-933a-4743-8dab-0d606ef2569e",
"carrier_issue_code": "MISSING_SSN",
"carrier_issue_details": "Social Security Number is missing for employee",
"created": 1697380200,
"employee_id": "7027d416-3bed-43e8-b824-508d9c0d323e",
"group_id": "436fb487-bb75-42d4-9651-7b1471a8940e",
"id": "dd9a1813-34f7-4c7e-86bc-f041f2cbd9a1",
"issue_key": "a1b2c3d4e5f6789012345678901234567890123456789012345678901234567890",
"last_seen": "2023-10-15T14:30:00Z",
"member_id": "7027d416-3bed-43e8-b824-508d9c0d323e",
"member_type": "employee",
"modified": 1697380200,
"resolution_method": null,
"resolved_at": null,
"status": "open",
"version": "ea38e798-cd61-4fa2-b485-d1c5b87a61af"
}
The unique identifier of the Issue.
Successful Response - Returns the Issue details.
The response is of type object
.
Was this page helpful?