Skip to main content

Get integration identifiers API request

Retrieves integration identifiers of a profile.

Endpoint and method

GET https://api.adapty.io/api/v2/server-side-api/integration/profile/set/integration-identifiers/

Example request

curl --location 'https://api.adapty.io/api/v2/server-side-api/integration/profile/set/integration-identifiers/' \
--header 'adapty-customer-user-id: <YOUR_CUSTOMER_USER_ID>' \
--header 'Content-Type: application/json' \
--header 'Authorization: Api-Key <YOUR_SECRET_API_KEY>' \
--data ''

Placeholders:

  • <YOUR_CUSTOMER_USER_ID>: The unique ID of the customer in your system.
  • <YOUR_SECRET_API_KEY>: Your secret API key for authorization.

Parameters

No parameters

Successful response: 200: OK

ParameterTypeDescription
adjust_device_idStringThe network user's ID in the Adjust integration.
airbridge_device_idStringThe ID of the user's device in Airbridge integration.
amplitude_device_idStringThe ID of the user's device in Amplitude integration.
amplitude_user_idStringThe ID of the user in Amplitude integration.
appmetrica_device_idStringThe ID of the user's device in AppMetrica integration.
appmetrica_profile_idStringThe ID of the user in AppMetrica integration.
appsflyer_idStringThe network user's ID in the AppsFlyer integration.
branch_idStringThe Branch Key of the user's app in the Branch integration.
facebook_anonymous_idStringThe ID of the user in Facebook Ads integration.
firebase_app_instance_idStringThe ID of the user in Firebase integration.
mixpanel_user_idStringThe ID of the user in Mixpanel integration.
one_signal_player_idStringThe ID of the user in OneSignal integration. Legacy identifier.
one_signal_subscription_idStringThe ID of the user in OneSignal integration. Recommended identifier.
posthog_distinct_user_idStringThe ID of the user in PostHog integration.
pushwoosh_hwidStringThe ID of the user's device in Pushwoosh integration.
tenjin_analytics_installation_idStringThe ID of the user's device in Tenjin integration.

Successful response example

{
"facebook_anonymous_id": "XZ7EF7D15E-8FA1-49D8-B180-918EB333E42A",
"amplitude_user_id": null,
"amplitude_device_id": null,
"mixpanel_user_id": "33w6yv5DPqVlyMVbjW31xvzJLtJ3",
"appmetrica_profile_id": null,
"appmetrica_device_id": null,
"one_signal_player_id": null,
"one_signal_subscription_id": "333ed338-757d-466a-a672-ab92db196a1f",
"pushwoosh_hwid": null,
"firebase_app_instance_id": "C333B35DF1DB418E99F7B815E9F5C549",
"airbridge_device_id": null,
"appsflyer_id": "1741933337626-3179568",
"branch_id": null,
"adjust_device_id": null,
"tenjin_analytics_installation_id": null,
"posthog_distinct_user_id": null
}

Errors

401: Unauthorized

The request failed due to missing or incorrect authorization. Check the Authorization page, paying close attention to the Authorization header.

The request also failed because the specified profile wasn’t found.

Body

ParameterTypeDescription
errorsObject
  • source: (string) Always non_field_errors.
  • errors: A description of the error.
error_codeStringShort error name. Always not_authenticated.
status_codeIntegerHTTP status. Always 401.

Response example

{
"errors": [
{
"source": "non_field_errors",
"errors": [
"Authentication credentials were not provided."
]
}
],
"error_code": "not_authenticated",
"status_code": 401
}

404: Not found

The request failed because the specified profile wasn’t found. Double-check the customer_user_id or profile_id for any typos.

Body
ParameterTypeDescription
errorsObject
  • source: (string) Always null.
  • errors: A description of the error.
error_codeStringShort error name. Always profile_does_not_exist.
status_codeIntegerHTTP status. Always 404.
Response example
{
"errors": [
{
"source": null,
"errors": [
"Profile not found"
]
}
],
"error_code": "profile_does_not_exist",
"status_code": 404
}

See also: