Skip to main content

Add integration identifiers API request

Adds integration identifiers to a profile.

Endpoint and method

POST 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 '{
"pushwoosh_hwid": "example_pushwoosh_hwid",
"mixpanel_user_id": "example_mixpanel_user_id",
"facebook_anonymous_id": "example_facebook_anonymous_id",
"firebase_app_instance_id": "example_firebase_app_instance_id",
"amplitude_user_id": "example_amplitude_user_id",
"amplitude_device_id": "example_amplitude_device_id",
"appmetrica_device_id": "example_appmetrica_device_id",
"appmetrica_profile_id": "example_appmetrica_profile_id",
"one_signal_subscription_id": "example_one_signal_subscription_id",
"one_signal_player_id": "example_one_signal_player_id",
"branch_id": "example_branch_id",
"appsflyer_id": "example_appsflyer_id",
"adjust_device_id": "example_adjust_device_id",
"airbridge_device_id": "example_airbridge_device_id",
"tenjin_analytics_installation_id": "example_tenjin_analytics_installation_id",
"posthog_distinct_user_id": "example_posthog_distinct_user_id"
}'

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

ParameterTypeRequired in requestNullable in requestDescription
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: 200: OK

The request is successful. The response body is blank.


See also: