Retrieve Industry Subcategory by Industry Code

Retrieve details for an industry subcategory. Details include the subcategory name and code; the category name and code; and the industry code.

Endpoint

GET /v1/industry-categories/industry-sub-categories/{industryCode}

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

industryCode  REQUIRED

string, value range: 001001 to 999999

Industry code. The industry code is the combination of the category code and subcategory code.

Request Body

None

Returns

Returns the Industry Subcategory object.

SAMPLE RESPONSE

				
					{
  "code": 005,
  "name": "Hospitals",
  "categoryCode": 007,
  "categoryName": "Medical Services",
  "industryCode": "007005",
  "createdBy": {
    "id": "6d35d25a-6ae5-43a1-8ae7-836cfad2299d",
    "type": "employee"
  },
  "createdAt": "2024-07-30T22:57:21.173Z",
  "updatedBy": {
    "id": "6d35d25a-6ae5-43a1-8ae7-836cfad2299d",
    "type": "employee"
  },
  "updatedAt": "2024-07-30T22:57:21.173Z"
}
				
			
Exit mobile version