# Position
# List
# Request
Method: GET
Url: /personnel/api/positions/
Headers:
- Content-Type: application/json
- Authorization: "JWT ey.........oQi98"
Query Parameters
Parameter | Description |
---|---|
page | |
page_size | |
position_code | |
position_name | |
position_code_icontains | |
position_name_icontains | |
ordering | id, dept_code, dept_name |
# Response
{
"count": 27,
"next": "null",
"previous": null,
"msg": "",
"code": 0,
"data": [
{
"id": 1,
"position_code": "1",
"position_name": "WORLD",
"parent_position": null
},
{
"id": 93,
"position_code": "5190062",
"position_name": "shenzhen",
"parent_position": null
},
...
...
}
# Read
# Request
Method: GET
Url: /personnel/api/positions/{id}/
Headers:
- Content-Type: application/json
- Authorization: "JWT ey.........oQi98"
Path Parameters
Parameter | Description |
---|---|
id | required |
# Response
- **Url:** /personnel/api/positions/1/
{
"id": 1,
"position_code": "1",
"position_name": "WORLD",
"parent_position": null
}
# Create
- Method: POST
- Url: /personnel/api/positions/
- Headers:
- Content-Type: application/json
- Authorization: "JWT ey.........oQi98"
- Request Body
{
"position_code": "test position code",
"position_name": "test position name",
"parent_position": null
}
Parameter | Required | Type | Description |
---|---|---|---|
position_code | Y | String | Position Code |
position_name | Y | String | Position Name |
parent_position | N | Integer | Parent Position |
# Response
{
"id": 100,
"position_code": "test position code",
"position_name": "test position name",
"parent_position": null
}
# Update
# Request
Method: PUT
Url: /personnel/api/positions/{id}/
Headers:
- Content-Type: application/json
- Authorization: "JWT ey.........oQi98"
Path Parameters
Parameter | Description |
---|---|
id | required |
- Request Body
{
"position_code": "11",
"position_name": "test position name",
}
Parameter | Required | Type | Description |
---|---|---|---|
position_code | Y | String | Position Code |
position_name | Y | String | Position Name |
parent_position | N | Integer | Parent Position |
# Response
- **Url:** PUT /personnel/api/positions/1/
{
"id": 1,
"position_code": "11",
"position_name": "WORLD WORLD",
"parent_position": null
}
# Delete
# Request
Method: DELETE
Url: /personnel/api/positions/{id}/
Headers:
- Content-Type: application/json
- Authorization: "JWT ey.........oQi98"
Path Parameters
Parameter | Description |
---|---|
id | required |
# Response
None
← Department Employee →