Tags
CRUD endpoints for a user's tags
Please note that in all urls & code samples you'll need to replace:username
and :corporation
with appropriate values
Get All Tags
GET
/v2/organization/:corporation/staff/:username/tag
Headers
Name | Value |
---|---|
Content-Type |
|
Authorization |
|
Url
Name | Type | Description |
---|---|---|
corporation | number | Corporation ID |
username | string | Unique username |
Response
Code
Get Individual Tag
GET
/v2/organization/:corporation/staff/:username/tag/:id
Headers
Name | Value |
---|---|
Content-Type |
|
Authorization |
|
Url
Name | Type | Description |
---|---|---|
corporation | number | Corporation ID |
username | string | Unique username |
id | number | Tag ID |
Response
Code
Create Tag
POST
/v2/organization/:corporation/staff/:username/tag
Headers
Name | Value |
---|---|
Content-Type |
|
Authorization |
|
Url
Name | Type | Description |
---|---|---|
corporation | number | Corporation ID |
username | string | Unique username |
Body
Name | Type | Description |
---|---|---|
name* | string | Tag Name |
Response
Code
Delete Tag
DELETE
/v2/organization/:corporation/staff/:username/tag/:id
Headers
Name | Value |
---|---|
Content-Type |
|
Authorization |
|
Url
Name | Type | Description |
---|---|---|
corporation | number | Corporation ID |
username | string | Unique username |
id | number | Tag ID |
Response
Code
Last updated