BlueConic Properties API

The following methods allow you to retrieve and update [Profile Properties](https://support.blueconic.com/hc/en-us/articles/202608231-Capturing-customer-data-in-Profile-Properties) and [Group Properties](https://support.blueconic.com/en/articles/247630-creating-and-managing-groups#h_01HCX36VPVENES2WNHEYRHXB2S).

OpenAPI Specification

blueconic-properties-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: BlueConic REST API v2 Audit Events Properties API
  description: "Welcome to the [BlueConic](https://www.blueconic.com) REST API v2. Our recently updated APIs offer access to a wealth of resources to interact with BlueConic visitor profiles, segments, interactions, and audit events via OpenAPI and OAuth 2.0 authorization flows making the interconnection between various services more secure, intuitive, and reliable than ever before.\n\nThis page describes how developers can use OAuth 2.0, the industry-standard protocol for authorization, to authorize apps in BlueConic and get started using the BlueConic REST API v2.\n\nLearn more about [how to use the BlueConic REST API v2](https://support.blueconic.com/hc/en-us/articles/200453891-Using-the-BlueConic-REST-API).\n\n# Authorizing an application to use the BlueConic REST API via OAuth 2.0\n\nIf you have an external software application that needs to communicate with BlueConic, you need to allow access to the BlueConic REST API. The authorization process in BlueConic for this access is built to OAuth 2.0 specifications. You can use either of two authorization flows: the authorization code flow and the client credentials flow. The most secure flow is the authorization code flow, intended for use with a user who can log in to BlueConic and authenticate the application to use the BlueConic API. The client credentials flow is easier to implement but lacks security features present in the authorization code flow. The client credentials flow is intended for machine-to-machine applications. \n\n## Using the Authorization code flow\n\nTo use the BlueConic REST API with OAuth 2.0 according to the authorization code flow you need to complete the following steps:\n\n1.  Configure BlueConic so your external OAuth 2.0 application can authenticate and use the REST API. This means that you have to:\n    - Have a BlueConic user with the \"Applications\" permission. This user can configure the details of the external application in BlueConic.\n    - Have a BlueConic user with the \"Authorize Applications\" permission. This user can authorize the external application via the redirect page served by the authorization server.\n    - Configure the external application on the BlueConic Access management > Applications tab, so BlueConic can store public client ID and the client secret. The external app uses these properties to perform the initial request for an authorization code.\n\n\n2. Develop an application that can execute OAuth 2.0 REST API requests. Specifically, that means an application that is able to:\n    - Generate a code verifier and code challenge.\n    - Store the public client ID and client secret as configured in BlueConic (see step 1). \n    - Request an authorization code from the BlueConic authorization server. Include the code challenge in the request. \n    - Show the user the redirect page served by the BlueConic authorization server, so the user can authenticate with credentials and consent to giving the application BlueConic REST API access.\n    - Receive the authorization code from the BlueConic authorization server.\n    - Use the authorization code to request an access token (and refresh token) from the BlueConic authorization server. Include the code verifier in the request. You must also provide the client ID and client secret for client authentication. You can do so by sending the client credentials in the body of your POST request.\n    - Use the access token to perform REST API requests. \n    - Revoke access if the user of the app so chooses (meaning that after this revocation, a new authorization grant is required to use the BlueConic REST API).\n    - Handle refresh token rotation. This means that whenever a new access token is requested using the refresh token, a new refresh token is also supplied along with the new access token.\n    - Handle all possible responses from the BlueConic REST API appropriately.\n\n[Read more about the Authorization Code Flow](https://support.blueconic.com/hc/en-us/articles/14912561861403)\n\n## Using the Client credentials flow\n\nTo make use of the BlueConic REST API with OAuth 2.0 following the client credentials flow, you need to complete the following steps:\n\n1. Configure BlueConic so your external OAuth 2.0 application can use the REST API. This means that you have to:\n    - Have a user with the \"Applications\" permission. This user can configure the details of the external application in BlueConic.\n    - Have a user with the \"Authorize Applications\" permission, who also has all permissions needed to use the REST API endpoint that you intend to use.\n    - Configure the external application on the Access management > Applications tab, so BlueConic can generate and store the public client ID and client secret for client authentication. Also select at least one scope so the app has access to that part of the REST API.\n   \n2. Develop an application that can execute OAuth 2.0 REST API requests. Specifically that means an application that is able to:\n    - Store the public client ID and client secret as configured in BlueConic (see above).\n    - Use the client ID and client secret to request an access token from the BlueConic authorization server. You can do so by sending the client credentials in the body of your POST request.\n    - Use the access token to perform REST API requests.\n    - Handle all possible responses from the BlueConic REST API appropriately.\n\n[Read more about the Client Credentials Flow](https://support.blueconic.com/hc/en-us/articles/14912655111963)\n\n# Using the try-out feature\nThe “Try” feature allows you to directly make REST calls to the API server, where you can make requests and see the responses, allowing you to experiment with the BlueConic API and understand how it works.\n\nYou can enter your BlueConic URL in the “API Servers” section. After that, you can try out the calls that don’t require authentication, such as “Get interactions”. You can enter the request parameters and click “Try”.\n\n## OAuth 2.0 authentication\n\nMost calls require OAuth 2.0 authentication, such as “Get audit events”. This can be seen at the right top and under the Request heading of each API method. To use the “Try” feature, you need to authenticate via OAuth 2.0. First create an Application in your BlueConic tenant (see above). When using the Authorization code flow, make sure to set the redirect URL to this tool as specified under the OAuth 2.0 authentication section. After you create the Application, authenticate this tool in the “Authentication” section. Enter the client ID and client secret in the correct OAuth 2.0 flow for which you created the application and press “GET TOKEN”. If the tool got a token successfully, you will see the text “API key applied” just under the “Authentication” heading. In calls that require Authentication, it will say “OAuth (OAuth 2.0) in header”. Now you can use the “Try” feature for calls that require OAuth 2.0. If you hover over the authentication scheme at the top right of an API method, you will see the required scopes (e.g. “Get audit events” has the scope read:audit-events). Make sure you set these scopes for the Application in BlueConic.\n\n# General functionality for all endpoints\n\n1. By using `prettyPrint`, the JSON data is formatted in a way that makes it easier to read and work with. This can be especially useful when working with large or complex JSON datasets. Add the following to the query string of a request to pretty print JSON: `&prettyPrint=true`.\n2. Gzip encoding is a method of compressing data and is commonly used to reduce the size of files sent over the Internet. BlueConic supports this so a client can set the request header `Accept-Encoding: gzip`. BlueConic will then compress the data in its response and send it back to the client with the `Content-Encoding: gzip` header. \n\n"
  termsOfService: https://www.blueconic.com/blueconic-terms-and-conditions
  contact:
    name: Contact us
    url: https://support.blueconic.com/hc/en-us/requests/new
  license:
    name: BlueConic
    url: https://github.com/blueconic/openapi/blob/main/LICENSE.MD
  version: '100.0'
servers:
- url: https://{blueconicHostname}/rest/v2
  description: The BlueConic server
  variables:
    blueconicHostname:
      description: BlueConic server hostname, e.g. 'tenant.blueconic.net'
      default: tenantname
tags:
- name: Properties
  description: The following methods allow you to retrieve and update [Profile Properties](https://support.blueconic.com/hc/en-us/articles/202608231-Capturing-customer-data-in-Profile-Properties) and [Group Properties](https://support.blueconic.com/en/articles/247630-creating-and-managing-groups#h_01HCX36VPVENES2WNHEYRHXB2S).
paths:
  /profileProperties/{propertyId}:
    get:
      tags:
      - Properties
      summary: Get one property
      description: Retrieves a single profile or group property.
      operationId: getOneProfileOrGroupProperty
      parameters:
      - name: propertyId
        in: path
        description: The ID of the property.
        required: true
        schema:
          type: string
        examples:
          Browser name (most recent):
            description: Browser name (most recent)
            value: currentbrowsername
          Operating system version (all):
            description: Operating system version (all)
            value: osversion
      responses:
        '200':
          description: ' Returns the property.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/profileProperty'
              examples:
                Response body (profile property):
                  description: Response body (profile property)
                  value: "{\n  \"availableForSegmentation\" : true,\n  \"canRead\" : true,\n  \"canWrite\" : true,\n  \"createNewProfile\" : false,\n  \"creationDate\" : \"2023-03-22T09:33:26.319Z\",\n  \"creator\" : {\n    \"fullName\" : \"test@blueconic.com\",\n    \"userName\" : \"test@blueconic.com\"\n  },\n  \"dataSensitivity\" : \"NON_PII\",\n  \"description\" : \"Test description.\",\n  \"filterType\" : \"RANGE\",\n  \"id\" : \"test_property\",\n  \"indexed\" : false,\n  \"isIdProperty\" : false,\n  \"lastModifiedDate\" : \"2023-03-22T09:41:21.491Z\",\n  \"lastModifiedUser\" : {\n    \"fullName\" : \"test@blueconic.com\",\n    \"userName\" : \"test@blueconic.com\"\n  },\n  \"links\" : [ {\n    \"href\" : \"https://localhost/rest/v2/profileProperties/test_property\",\n    \"rel\" : \"alt\",\n    \"type\" : \"application/json\"\n  } ],\n  \"mergeStrategy\" : \"HIGHEST\",\n  \"name\" : \"Test property\",\n  \"permissionLevel\" : \"ANONYMOUS\",\n  \"precision\" : 0,\n  \"profileCount\" : 0,\n  \"showInUI\" : true,\n  \"tags\" : [ \"Tech\", \"Metrics\" ],\n  \"totalProfileCount\" : 130300,\n  \"useValidation\" : true,\n  \"values\" : [ ]\n}"
                Response body (group property):
                  description: Response body (group property)
                  value: "{\n  \"availableForSegmentation\": false,\n  \"canRead\": true,\n  \"canWrite\": true,\n  \"compositionStrategy\": \"BOTH\",\n  \"createNewProfile\": false,\n  \"creationDate\": \"2025-09-25T11:51:34.249Z\",\n  \"creator\": {\n    \"fullName\": \"ondemand@blueconic.com\",\n    \"userName\": \"ondemand@blueconic.com\"\n  },\n  \"dataSensitivity\": \"NON_PII\",\n  \"description\": \"\",\n  \"filterType\": \"SELECT\",\n  \"groupTypeId\": \"company\",\n  \"id\": \"company_name\",\n  \"indexed\": false,\n  \"isIdProperty\": false,\n  \"lastModifiedDate\": \"2025-09-25T11:51:34.249Z\",\n  \"lastModifiedUser\": {\n    \"fullName\": \"ondemand@blueconic.com\",\n    \"userName\": \"ondemand@blueconic.com\"\n  },\n  \"links\": [\n    {\n      \"href\": \"https://localhost/rest/v2/profileProperties/company_name\",\n      \"rel\": \"alt\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"mergeStrategy\": \"BOTH\",\n  \"name\": \"Company name\",\n  \"permissionLevel\": \"ANONYMOUS\",\n  \"precision\": 0,\n  \"profileCount\": 0,\n  \"showInUI\": true,\n  \"tags\": [],\n  \"totalProfileCount\": 1,\n  \"useValidation\": true,\n  \"values\": []\n}"
        '401':
          description: Authentication failed (unauthorized).
        '404':
          description: ' The specified property doesn''t exist.'
        '503':
          description: The server is too busy to handle the request.
      security:
      - oauth2:
        - read:profile-properties
    put:
      tags:
      - Properties
      summary: Create/update property
      operationId: createUpdateProfileOrGroupProperty
      parameters:
      - name: propertyId
        in: path
        description: The ID of the property to create or update. A valid id may consist of letters, numbers, hyphens (-), and underscores (_) and is at least one character long.
        required: true
        schema:
          type: string
        examples:
          Browser name (most recent):
            description: Browser name (most recent)
            value: currentbrowsername
      requestBody:
        description: Creates or updates a property (either for profiles or groups).
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/profileProperty'
            examples:
              Example request body (profile property):
                description: Example request body (profile property)
                value: "{\n  \"id\": \"test_property\",\n  \"indexed\": false,\n  \"createNewProfile\": false,\n  \"availableForSegmentation\": true,\n  \"showInUI\": true,\n  \"canRead\": true,\n  \"canWrite\": true,\n  \"filterType\": \"RANGE\",\n  \"description\": \"The profile property description\",\n  \"permissionLevel\": \"PERSONAL\",\n  \"mergeStrategy\": \"BOTH\",\n  \"dataSensitivity\": \"NON_PII\",\n  \"tags\": [],\n  \"values\": [],\n  \"precision\": 0,\n  \"unit\": {\n    \"id\": \"views\",\n    \"name\": {\n      \"label\": [\n        {\n          \"content\": \"Views\",\n          \"locale\": \"en_US\"\n        },\n        {\n          \"content\": \"Impressies\",\n          \"locale\": \"nl_NL\"\n        }\n      ]\n    }\n  },\n  \"name\": \"Test property\"\n}"
              Example request body (group property):
                description: Example request body (group property)
                value: "{\n  \"id\": \"company_new_property\",\n  \"availableForSegmentation\": true,\n  \"showInUI\": true,\n  \"filterType\": \"CURRENCY\",\n  \"description\": \"My description\",\n  \"dataSensitivity\": \"PII\",\n  \"tags\": [],\n  \"currency\": {\n    \"isoCode\": \"USD\"\n  },\n  \"groupTypeId\": \"company\",\n  \"unit\": {\n    \"id\": \"\"\n  },\n  \"name\": \"new property\"\n}"
        required: true
      responses:
        '200':
          description: Returns the created / updated property.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/profileProperty'
              examples:
                Response body with currency:
                  description: Response body with currency
                  value: "{\n  \"availableForSegmentation\" : true,\n  \"canRead\" : true,\n  \"canWrite\" : true,\n  \"createNewProfile\" : false,\n  \"creationDate\" : \"2023-03-22T09:43:58.910Z\",\n  \"creator\" : {\n    \"fullName\" : \"test@blueconic.com\",\n    \"userName\" : \"test@blueconic.com\"\n  },\n  \"currency\" : {\n    \"isoCode\" : \"USD\",\n    \"name\" : \"United States dollar\",\n    \"precision\" : 2,\n    \"symbol\" : \"\\$\"\n  },\n  \"dataSensitivity\" : \"NON_PII\",\n  \"description\" : \"The description for the currency\",\n  \"filterType\" : \"CURRENCY\",\n  \"id\" : \"test_currency\",\n  \"indexed\" : false,\n  \"isIdProperty\" : false,\n  \"lastModifiedDate\" : \"2023-03-22T09:43:58.910Z\",\n  \"lastModifiedUser\" : {\n    \"fullName\" : \"test@blueconic.com\",\n    \"userName\" : \"test@blueconic.com\"\n  },\n  \"links\" : [ {\n    \"href\" : \"https://localhost/rest/v2/profileProperties/test_currency\",\n    \"rel\" : \"alt\",\n    \"type\" : \"application/json\"\n  } ],\n  \"mergeStrategy\" : \"BOTH\",\n  \"name\" : \"Test currency\",\n  \"permissionLevel\" : \"ANONYMOUS\",\n  \"precision\" : 2,\n  \"profileCount\" : 0,\n  \"showInUI\" : true,\n  \"tags\" : [ \"Metrics\" ],\n  \"totalProfileCount\" : 130300,\n  \"useValidation\" : true,\n  \"values\" : [ ]\n}"
                Response body with unit pixel:
                  description: Response body with unit pixel
                  value: "{\n  \"availableForSegmentation\" : true,\n  \"canDelete\" : true,\n  \"canRead\" : true,\n  \"canWrite\" : true,\n  \"createNewProfile\" : false,\n  \"creationDate\" : \"2023-03-22T09:47:26.491Z\",\n  \"creator\" : {\n    \"fullName\" : \"test@blueconic.com\",\n    \"userName\" : \"test@blueconic.com\"\n  },\n  \"dataSensitivity\" : \"NON_PII\",\n  \"description\" : \"Test unit pixel description.\",\n  \"favorite\" : false,\n  \"filterType\" : \"RANGE\",\n  \"id\" : \"test_unit_pixels\",\n  \"indexed\" : false,\n  \"isIdProperty\" : false,\n  \"lastModifiedDate\" : \"2023-03-22T09:47:26.491Z\",\n  \"lastModifiedUser\" : {\n    \"fullName\" : \"test@blueconic.com\",\n    \"userName\" : \"test@blueconic.com\"\n  },\n  \"links\" : [ {\n    \"href\" : \"https://localhost/rest/v2/profileProperties/test_unit_pixels\",\n    \"rel\" : \"alt\",\n    \"type\" : \"application/json\"\n  } ],\n  \"mergeStrategy\" : \"HIGHEST\",\n  \"name\" : \"Test unit pixels\",\n  \"permissionLevel\" : \"ANONYMOUS\",\n  \"precision\" : 0,\n  \"profileCount\" : 0,\n  \"readOnly\" : false,\n  \"showInUI\" : true,\n  \"tags\" : [ \"Tech\", \"Metrics\" ],\n  \"totalProfileCount\" : 130300,\n  \"unit\" : {\n    \"id\" : \"pixels\",\n    \"name\" : {\n      \"label\" : [ {\n        \"content\" : \"Pixels\",\n        \"locale\" : \"nl_NL\"\n      }, {\n        \"content\" : \"Pixels\",\n        \"locale\" : \"en_US\"\n      } ]\n    }\n  },\n  \"useValidation\" : true,\n  \"values\" : [ ]\n}"
        '400':
          description: 'The JSON is invalid or: Either, the specified property exists but is created by a plugin and cannot be created / updated through REST, or the id, filtertype, permission level, or merge strategy is invalid.'
        '401':
          description: Authentication failed (unauthorized).
        '503':
          description: The server is too busy to handle the request.
      security:
      - oauth2:
        - write:profile-properties
    delete:
      tags:
      - Properties
      summary: Delete property
      description: Deletes a profile or group property.
      operationId: deleteProfileOrGroupProperty
      parameters:
      - name: propertyId
        in: path
        description: The ID of the property.
        required: true
        schema:
          type: string
        examples:
          Browser name (most recent):
            description: Browser name (most recent)
            value: currentbrowsername
          Operating system version (all):
            description: Operating system version (all)
            value: osversion
      responses:
        '200':
          description: Returns the deleted property.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/profileProperty'
              examples:
                Response body:
                  description: Response body
                  value: "{\n  \"availableForSegmentation\" : true,\n  \"canRead\" : true,\n  \"canWrite\" : true,\n  \"createNewProfile\" : false,\n  \"creationDate\" : \"2023-03-22T09:33:26.319Z\",\n  \"creator\" : {\n    \"fullName\" : \"test@blueconic.com\",\n    \"userName\" : \"test@blueconic.com\"\n  },\n  \"dataSensitivity\" : \"NON_PII\",\n  \"description\" : \"Test description.\",\n  \"filterType\" : \"RANGE\",\n  \"id\" : \"test_property\",\n  \"indexed\" : false,\n  \"isIdProperty\" : false,\n  \"lastModifiedDate\" : \"2023-03-22T09:41:21.491Z\",\n  \"lastModifiedUser\" : {\n    \"fullName\" : \"test@blueconic.com\",\n    \"userName\" : \"test@blueconic.com\"\n  },\n  \"links\" : [ {\n    \"href\" : \"https://localhost/rest/v2/profileProperties/test_property\",\n    \"rel\" : \"alt\",\n    \"type\" : \"application/json\"\n  } ],\n  \"mergeStrategy\" : \"HIGHEST\",\n  \"name\" : \"Test property\",\n  \"permissionLevel\" : \"ANONYMOUS\",\n  \"precision\" : 0,\n  \"profileCount\" : 0,\n  \"showInUI\" : true,\n  \"tags\" : [ \"Tech\", \"Metrics\" ],\n  \"totalProfileCount\" : 130300,\n  \"useValidation\" : true,\n  \"values\" : [ ]\n}"
        '401':
          description: Authentication failed (unauthorized).
        '404':
          description: ' The specified property doesn''t exist.'
        '503':
          description: The server is too busy to handle the request.
      security:
      - oauth2:
        - write:profile-properties
  /profileProperties:
    get:
      tags:
      - Properties
      summary: Get all properties
      description: Retrieves the properties for profiles (no `groupTypeId`) or groups (depending on the passed `groupTypeId`).
      operationId: getAllProfileOrGroupProperties
      parameters:
      - name: count
        in: query
        description: Specifies the number of results to return.
        schema:
          type: integer
          format: int64
          default: 20
          example: 10
      - name: startIndex
        in: query
        description: Specifies the index of the first item to include in the result.
        schema:
          type: integer
          format: int64
          default: 0
          example: 10
      - name: filterType
        in: query
        description: The filterType of the properties e.g. "SELECT","RANGE", AND "DATETIME". Multiple values are allowed.
        schema:
          type: array
          enum:
          - RANGE
          - CURRENCY
          - DECIMAL
          - SELECT
          - EMAIL
          - DATETIME
          example: DATETIME
          items:
            type: string
            enum:
            - RANGE
            - CURRENCY
            - DECIMAL
            - SELECT
            - EMAIL
            - DATETIME
            example: DATETIME
      - name: filterValue
        in: query
        description: 'If specified, the name of the profile properties must match the value. '
        schema:
          type: string
      - name: groupTypeId
        in: query
        description: The group type IDs to retrieve the properties for.
        schema:
          type: array
          example: household
          items:
            type: string
            example: household
      responses:
        '200':
          description: ' Returns the property.'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/profileProperties'
              examples:
                Response body (profile properties):
                  description: Response body (profile properties)
                  value: "{\n  \"itemsPerPage\": 20,\n  \"startIndex\" : 0,\n  \"totalPages\" : 8,\n  \"totalResults\" : 144,\n  \"links\": {\n    \"links\": [{\n      \"href\": \"https://localhost/rest/v2/profileProperties\",\n      \"rel\": \"alt\",\n      \"type\": \"application/json\"\n    }]\n  },\n  \"profileProperties\": [{\n    \"availableForSegmentation\": true,\n    \"canRead\": true,\n    \"canWrite\": true,\n    \"createNewProfile\": false,\n    \"creationDate\": \"2023-03-20T13:53:34.687Z\",\n    \"dataSensitivity\": \"NON_PII\",\n    \"description\": \"The unique Facebook Ads custom audience IDs to which a user has been added by BlueConic.\",\n    \"filterType\": \"SELECT\",\n    \"id\": \"_facebookAdsAudiences\",\n    \"indexed\": false,\n    \"isIdProperty\": false,\n    \"lastModifiedDate\": \"2023-03-20T13:53:34.687Z\",\n    \"links\": [{\n      \"href\": \"https://localhost/rest/v2/profileProperties/_facebookAdsAudiences?alt=application%2Fjson\",\n      \"rel\": \"self\",\n      \"type\": \"application/json\"\n    }],\n    \"mergeStrategy\": \"BOTH\",\n    \"name\": \"Facebook Ads synced custom audience IDs\",\n    \"permissionLevel\": \"ANONYMOUS\",\n    \"precision\": 0,\n    \"profileCount\": 0,\n    \"showInUI\": false,\n    \"tags\": [\"Identifier\"],\n    \"totalProfileCount\": 130300,\n    \"useValidation\": true,\n    \"values\": []\n  }, {\n    \"availableForSegmentation\" : true,\n    \"canRead\" : true,\n    \"canWrite\" : true,\n    \"createNewProfile\" : false,\n    \"creationDate\" : \"2023-03-20T13:53:35.046Z\",\n    \"dataSensitivity\" : \"NON_PII\",\n    \"description\" : \"Indicates whether an ad blocker was detected for the visitor. Will contain the value \\\\\"yes\\\\\" if one was detected.\",\n    \"filterType\" : \"SELECT\",\n    \"id\" : \"adblock_detected\",\n    \"indexed\" : false,\n    \"isIdProperty\" : false,\n    \"lastModifiedDate\" : \"2023-03-22T09:34:55.568Z\",\n    \"lastModifiedUser\" : {\n      \"fullName\" : \"test@blueconic.com\",\n      \"userName\" : \"test@blueconic.com\"\n    },\n    \"links\" : [ {\n      \"href\" : \"https://localhost/rest/v2/profileProperties/adblock_detected?alt=application%2Fjson\",\n      \"rel\" : \"self\",\n      \"type\" : \"application/json\"\n    } ],\n    \"mergeStrategy\" : \"BOTH\",\n    \"name\" : \"AdBlock usage detected\",\n    \"permissionLevel\" : \"ANONYMOUS\",\n    \"precision\" : 0,\n    \"profileCount\" : 0,\n    \"showInUI\" : true,\n    \"tags\" : [ \"Address\", \"Process\" ],\n    \"totalProfileCount\" : 130300,\n    \"useValidation\" : true,\n    \"values\" : [ ]\n  }]\n}"
                Response body (group properties):
                  description: Response body (group properties)
                  value: "{\n  \"itemsPerPage\": 2,\n  \"links\": {\n    \"links\": [\n      {\n        \"href\": \"https://localhost/rest/v2/profileProperties?count=10\",\n        \"rel\": \"alt\",\n        \"type\": \"application/json\"\n      }\n    ]\n  },\n  \"profileProperties\": [\n    {\n      \"availableForSegmentation\": false,\n      \"canRead\": true,\n      \"canWrite\": true,\n      \"compositionStrategy\": \"BOTH\",\n      \"createNewProfile\": false,\n      \"creationDate\": \"2025-09-26T12:27:24.442Z\",\n      \"creator\": {\n        \"fullName\": \"ondemand@blueconic.com\",\n        \"userName\": \"ondemand@blueconic.com\"\n      },\n      \"dataSensitivity\": \"NON_PII\",\n      \"description\": \"\",\n      \"filterType\": \"SELECT\",\n      \"groupTypeId\": \"company\",\n      \"id\": \"company_location\",\n      \"indexed\": false,\n      \"isIdProperty\": false,\n      \"lastModifiedDate\": \"2025-09-26T12:27:24.442Z\",\n      \"lastModifiedUser\": {\n        \"fullName\": \"ondemand@blueconic.com\",\n        \"userName\": \"ondemand@blueconic.com\"\n      },\n      \"links\": [\n        {\n          \"href\": \"https://localhost/rest/v2/profileProperties/company_faddfafda?alt=application%2Fjson\",\n          \"rel\": \"self\",\n          \"type\": \"application/json\"\n        }\n      ],\n      \"mergeStrategy\": \"BOTH\",\n      \"name\": \"Company location\",\n      \"permissionLevel\": \"ANONYMOUS\",\n      \"precision\": 0,\n      \"profileCount\": 0,\n      \"showInUI\": true,\n      \"tags\": [],\n      \"totalProfileCount\": 1,\n      \"useValidation\": true,\n      \"values\": []\n    },\n    {\n      \"availableForSegmentation\": false,\n      \"canRead\": true,\n      \"canWrite\": true,\n      \"compositionStrategy\": \"BOTH\",\n      \"createNewProfile\": false,\n      \"creationDate\": \"2025-09-25T11:51:34.249Z\",\n      \"creator\": {\n        \"fullName\": \"ondemand@blueconic.com\",\n        \"userName\": \"ondemand@blueconic.com\"\n      },\n      \"dataSensitivity\": \"NON_PII\",\n      \"description\": \"\",\n      \"filterType\": \"SELECT\",\n      \"groupTypeId\": \"company\",\n      \"id\": \"company_name\",\n      \"indexed\": false,\n      \"isIdProperty\": false,\n      \"lastModifiedDate\": \"2025-09-25T11:51:34.249Z\",\n      \"lastModifiedUser\": {\n        \"fullName\": \"ondemand@blueconic.com\",\n        \"userName\": \"ondemand@blueconic.com\"\n      },\n      \"links\": [\n        {\n          \"href\": \"https://localhost/rest/v2/profileProperties/company_name?alt=application%2Fjson\",\n          \"rel\": \"self\",\n          \"type\": \"application/json\"\n        }\n      ],\n      \"mergeStrategy\": \"BOTH\",\n      \"name\": \"Company name\",\n      \"permissionLevel\": \"ANONYMOUS\",\n      \"precision\": 0,\n      \"profileCount\": 0,\n      \"showInUI\": true,\n      \"tags\": [],\n      \"totalProfileCount\": 1,\n      \"useValidation\": true,\n      \"values\": []\n    }\n  ],\n  \"startIndex\": 0,\n  \"totalPages\": 1,\n  \"totalResults\": 2\n}"
        '401':
          description: Authentication failed (unauthorized).
        '503':
          description: The server is too busy to handle the request.
      security:
      - oauth2:
        - read:profile-properties
components:
  schemas:
    profileProperties:
      type: object
      properties:
        itemsPerPage:
          type: integer
          format: int32
          description: Number of results per page.
          readOnly: true
        links:
          $ref: '#/components/schemas/links'
        profileProperties:
          type: array
          items:
            $ref: '#/components/schemas/profileProperty'
        startIndex:
          type: integer
          format: int32
          description: The start index.
          readOnly: true
        totalPages:
          type: integer
          format: int32
          description: The total number of pages.
          readOnly: true
        totalResults:
          type: integer
          format: int32
          description: The total number of results.
          readOnly: true
    profileProperty:
      type: object
      properties:
        availableForSegmentation:
          type: boolean
          default: false
          description: Whether the property is available as a filter to create segments.
        canRead:
          type: boolean
          default: false
          description: Whether the visitor's browser is allowed to retrieve the value for this property.
        canWrite:
          type: boolean
          default: false
          description: Whether the visitor's browser is allowed to write a (new) value into this property.
        createNewProfile:
          type: boolean
          default: false
          description: Whether a visitor will switch to a new profile when a new value for the profile property is set. This will prevent potential profile hijacking. Only applicable when "indexed" is "true." This is only relevant for profile properties, not group properties.
        creationDate:
          type: string
          format: date-time
          description: The creation date of the object. Datetime in UTC in the https://www.ietf.org/rfc/rfc3339.txt format, example = "2025-01-22T11:21:33.872Z".
          readOnly: true
        creator:
          $ref: '#/components/schemas/UserBean'
        currency:
          $ref: '#/components/schemas/currency'
        dataSensitivity:
          type: string
          default: NON_PII
          description: The data sensitivity for the property.
          enum:
          - NON_PII
          - PII
        description:
          type: string
          description: The description.
        filterType:
          type: string
          default: None
          description: The filtertype of the property. Note that changing the type might lead to loss of information.
          enum:
          - RANGE
          - CURRENCY
          - DECIMAL
          - SELECT
          - EMAIL
          - DATETIME
        filterTypeSuggestion:
          type: string
          description: The suggested filter type.
          readOnly: true
        groupTypeId:
          type: string
          description: The ID of the group type that this property belongs to. Blank for profile properties.
        id:
          type: string
          description: The object ID.
        indexed:
          type: boolean
          default: false
          description: Specifies that the profile property holds a unique value for each profile. When enabled, the property is indexed and used as a unique identifier.
        isIdProperty:
          type: boolean
          description: Whether this is a property that contains references to groups (only relevant to profile properties of type 'Group ID').
        lastModifiedDate:

# --- truncated at 32 KB (38 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/blueconic/refs/heads/main/openapi/blueconic-properties-api-openapi.yml