Skip to content

ListIntegrationAttributes

GET/api/v1/integrations/{integration}/attributes

List the attributes an integration syncs onto the users it knows about.

Example request

curl \
-H "Authorization: Bearer ${OBLIQUE_API_KEY}" \
"https://us.oblique.security/api/v1/integrations/{integration}/attributes"

Set OBLIQUE_API_KEY to your API key.

Path parameters

  • parentstringrequired

    The name of the integration. May be integrations/- to list all attributes.

Query parameters

  • pageSizeinteger (int32)
  • pageTokenstring

Response

200ListIntegrationAttributesResponse
  • integrationAttributesIntegrationAttribute[]
    • namestring

      Assigned by Oblique.

    • createTimestring (date-time)read-only

      Create and update timestamps.

    • updateTimestring (date-time)read-only
    • keystringread-only

      The key of the attribute.

    • valuesValue[]read-only

      The detected values of the attribute.

      • valuestringread-only
      • countstring (int64)read-only
    • valueCountstring (int64)read-only

      The number of unique values for this attribute. This may be larger than the number of values in the values field if the attribute is truncated.

    • unsetCountstring (int64)read-only

      The number of users that don’t have this field set.

  • nextPageTokenstring

Errors

StatusMeaning
400Malformed request
401Missing or invalid API key
403Not allowed for this API key
404Not found
429Too many requests
500Internal server error