GET {clientId}/Tags

This method will retrieve all Tags defined by the client.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

This is your organization’s MyPreferences Account Id.

string

Required

Body Parameters

None.

Response Information

Response Codes

HTTP Status CodeTextDescription
200 OK The request was successfully processed.
400 Bad Request The request was invalid and cannot be processed. This may be a result of a malformed request. You must update the request before trying again.
401 Unauthorized Authentication credentials are missing or incorrect. You must verify your ClientId, UserId, and Authorization Scheme before trying again.
403 Forbidden The authentication credentials were insufficient to grant access to the requested resource. In most cases, your user may not have the appropriate permissions to access the requested resource. Verify User Group permissions for your user before trying again.
500 Internal Server Error The server encountered an unexpected condition that prevented it from fulfilling the request. Notify PossibleNOW Support if it’s a continuous occurrence.

Resource Description

TagCountList
NameDescriptionTypeAdditional information
TagCounts

A collection of Tag Counts that can be associated with a Profile.

Collection of TagCount

Response Formats

application/json, text/json, application/json-patch+json

Sample:
{
  "TagCounts": [
    {
      "Tag": {
        "Name": "sample string 1"
      },
      "Count": 1
    },
    {
      "Tag": {
        "Name": "sample string 1"
      },
      "Count": 1
    }
  ]
}

application/xml, text/xml

Sample:
<TagCountList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProfileServices.REST.Models">
  <TagCounts>
    <TagCount>
      <Count>1</Count>
      <Tag>
        <Name>sample string 1</Name>
      </Tag>
    </TagCount>
    <TagCount>
      <Count>1</Count>
      <Tag>
        <Name>sample string 1</Name>
      </Tag>
    </TagCount>
  </TagCounts>
</TagCountList>