Associations

Group Associations

Indicator Associations

Tag Associations

Task Associations

Victim Associations

Retrieving Available Associations

All of the available Associations can be viewed by making a GET request to /v2/types/associationTypes. This will return the name of the Association and, if applicable, the Indicator/Group Resources between which the Association can be created.

GET /v2/types/associationTypes/

To retrieve information about a specific Association, use the following GET request format:

GET /v2/types/associationTypes/{associationTypeName}/

For example, the GET request below will return details about the Adversary Association type:

GET /v2/types/associationTypes/Adversary/

JSON Response:

{
  "status": "Success",
  "data": {
    "associationType": {
      "name": "Adversary",
      "custom": "false",
      "fileAction": "false",
      "apiBranch": "adversaries"
    }
  }
}

Note

Custom Association types can be created on an instance of ThreatConnect by a system administrator. Contact your system administrator to create new types of Associations.