Expertise tags
With expertise tags, you can sort out the particular skills or knowledge areas of your contacts. For instance, Homer Simpson could attribute a "Capitalism" expertise tag to his contact, Mr. Burns.
View expertise tags
Fetch a list of expertise tags
GET
https://web.r0app.com/api/v1/orgs/:org_id/expertises
Returns a paginated list of an organization's expertise tags.
Query Parameters
include[]
String
page
Integer
limit
Integer
search
String
Optional: can be used to search for expertise tags. (Don't forget to URL encode query parameters)
Example request
View contacts associated with an expertise tag
Fetch a list of contacts with a given expertise tag
GET
https://web.r0app.com/api/v1/orgs/:org_id/expertises/:expertise_id/contacts
Returns a paginated list of an contacts that have a given expertise tag associated with them.
Path Parameters
:expertise_id*
String
Query Parameters
include[]
String
page
Integer
Example request
Create an expertise tag
Create an expertise tag
POST
https://web.r0app.com/api/v1/orgs/:org_id/expertises
Request Body
expertise[name]*
String
Example request
Update a expertise tag
Update an expertise tag
PATCH
https://web.r0app.com/api/v1/orgs/:org_id/expertises/:expertise_id
Path Parameters
:expertise_id*
String
Request Body
expertise[name]*
String
Example request
Delete a expertise tag
Delete an expertise tag
DELETE
https://web.r0app.com/api/v1/orgs/:org_id
Path Parameters
:expertise_id*
String
Request Body
soft_delete
String
Example request
Last updated