Entity Tag

Get all tags an entity

get
/entities/{entityId}/tags

This endpoint retrieves all the tags of an entity.

Path parameters
entityIdstringRequired
Query parameters
userIdstringRequired

The Id of the user performing the request.

Example: dummy-userid
Header parameters
apikeystringRequired

The API key for authentication

Example: test
apisecretstringOptional

The secret key for authentication

Example: test-secret
tokenstringRequired

The token for user authentication.

Example: dummy-token
Responses
200

Successful response

application/json
get
/entities/{entityId}/tags

Add tag for an entity

post
/entities/{entityId}/tags

This endpoint allows to add a tag for an entity.

Path parameters
entityIdstringRequired
Query parameters
userIdstringRequired

The Id of the user performing the request.

Example: dummy-userid
Header parameters
apikeystringRequired

The API key for authentication

Example: test
apisecretstringOptional

The secret key for authentication

Example: test-secret
tokenstringRequired

The token for user authentication.

Example: dummy-token
Body
tagNamestringOptionalExample: tag-101
descriptionstringOptionalExample: This is our new tag
Responses
200

Successful response

application/json
post
/entities/{entityId}/tags

Update tag for an entity

post
/entities/{entityId}/tags/{tagId}/update

This endpoint allows to update a tag for an entity.

Path parameters
entityIdstringRequired
tagIdstringRequired
Query parameters
userIdstringRequired

The Id of the user performing the request.

Example: dummy-userid
Header parameters
apikeystringRequired

The API key for authentication

Example: test
apisecretstringOptional

The secret key for authentication

Example: test-secret
tokenstringRequired

The token for user authentication.

Example: dummy-token
Body
tagNamestringOptionalExample: tag-101
descriptionstringOptionalExample: This is our new tag
Responses
200

Successful response

application/json
post
/entities/{entityId}/tags/{tagId}/update

Delete tag for an entity

post
/entities/{entityId}/tags/{tagId}/delete

This endpoint allows to delete a tag for an entity.

Path parameters
entityIdstringRequired
tagIdstringRequired
Query parameters
userIdstringRequired

The Id of the user performing the request.

Example: dummy-userid
Header parameters
apikeystringRequired

The API key for authentication

Example: test
apisecretstringOptional

The secret key for authentication

Example: test-secret
tokenstringRequired

The token for user authentication.

Example: dummy-token
Body
objectOptional
Responses
200

Successful response

application/json
post
/entities/{entityId}/tags/{tagId}/delete

Get entity tags for a user

get
/entities/{entityId}/users/{forUserId}/tags

This endpoint retrieves all the entity tags for a user.

Path parameters
entityIdstringRequired
forUserIdstringRequired
Header parameters
apikeystringRequired

The API key for authentication

Example: test
apisecretstringOptional

The secret key for authentication

Example: test-secret
useridstringRequired

The Id of the user performing the request.

Example: dummy-userid
tokenstringRequired

The token for user authentication.

Example: dummy-token
Responses
200

Successful response

application/json
get
/entities/{entityId}/users/{forUserId}/tags

All entity tag for a user

post
/entities/{entityId}/users/{forUserId}/tags/{tagId}/add

This endpoint allows to add an entity tag for a user.

Path parameters
entityIdstringRequired
forUserIdstringRequired
tagIdstringRequired
Header parameters
apikeystringRequired

The API key for authentication

Example: test
apisecretstringOptional

The secret key for authentication

Example: test-secret
useridstringRequired

The Id of the user performing the request.

Example: dummy-userid
tokenstringRequired

The token for user authentication.

Example: dummy-token
Body
objectOptional
Responses
200

Successful response

application/json
post
/entities/{entityId}/users/{forUserId}/tags/{tagId}/add

Remove entity tag for a user

post
/entities/{entityId}/users/{forUserId}/tags/{tagId}/remove

This endpoint allows to remove an entity tag for a user.

Path parameters
entityIdstringRequired
forUserIdstringRequired
tagIdstringRequired
Header parameters
apikeystringRequired

The API key for authentication

Example: test
apisecretstringOptional

The secret key for authentication

Example: test-secret
useridstringRequired

The Id of the user performing the request.

Example: dummy-userid
tokenstringRequired

The token for user authentication.

Example: dummy-token
Body
objectOptional
Responses
200

Successful response

application/json
post
/entities/{entityId}/users/{forUserId}/tags/{tagId}/remove

Last updated