GET RoleCategory/GetAllRoleCategories?industry_id={industry_id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
industry_id

integer

Required

Body Parameters

None.

Response Information

Resource Description

RoleCategoryResponse
NameDescriptionTypeAdditional information
status

string

None.

remarks

string

None.

getRoleCategories

Collection of RoleCategoryData

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "remarks": "sample string 2",
  "getRoleCategories": [
    {
      "role_cat_id": 1,
      "role_cat_name": "sample string 2",
      "industry_id": 3,
      "department": 4,
      "department_name": "sample string 5",
      "tags": "sample string 6"
    },
    {
      "role_cat_id": 1,
      "role_cat_name": "sample string 2",
      "industry_id": 3,
      "department": 4,
      "department_name": "sample string 5",
      "tags": "sample string 6"
    }
  ]
}

application/xml, text/xml

Sample:
<RoleCategoryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OffshorePlacementsAPI.Models">
  <getRoleCategories>
    <RoleCategoryData>
      <department>4</department>
      <department_name>sample string 5</department_name>
      <industry_id>3</industry_id>
      <role_cat_id>1</role_cat_id>
      <role_cat_name>sample string 2</role_cat_name>
      <tags>sample string 6</tags>
    </RoleCategoryData>
    <RoleCategoryData>
      <department>4</department>
      <department_name>sample string 5</department_name>
      <industry_id>3</industry_id>
      <role_cat_id>1</role_cat_id>
      <role_cat_name>sample string 2</role_cat_name>
      <tags>sample string 6</tags>
    </RoleCategoryData>
  </getRoleCategories>
  <remarks>sample string 2</remarks>
  <status>sample string 1</status>
</RoleCategoryResponse>