Skip to main content

Add attribution API request

Adds marketing attribution data to a profile.

Endpoint and method

POST https://api.adapty.io/api/v2/web-api/attribution/

Request example

curl --location 'https://api.adapty.io/api/v2/web-api/attribution/' \
--header 'Content-Type: application/json' \
--header 'Authorization: Api-Key <YOUR_PUBLIC_API_KEY>' \
--data '{
"status": "organic",
"attribution_user_id": "attribution_user_id_value",
"channel": "marketing_channel_value",
"campaign": "campaign_name_value",
"ad_group": "ad_group_name_value",
"ad_set": "ad_set_name_value",
"creative": "creative_name_value",
"customer_user_id": "<YOUR_CUSTOMER_USER_ID>"
}
'

Parameters

NameTypeRequiredDescription
statusString

Indicates if the attribution is organic or non-organic.

Possible values are:

  • organic
  • non_organic
  • unknown
attribution_user_idStringID assigned to the user by the attribution source.
channelStringMarketing channel name.
campaignStringMarketing campaign name.
ad_groupStringAttribution ad group.
ad_setStringAttribution ad set.
creativeStringAttribution creative keyword.
customer_user_idString*

User ID you use in your app to identify the user if you do. For example, it can be your user UUID, email, or any other ID. Null if you didn't set it. You can find it in the Customer User ID field of the profile in the Adapty Dashboard.

* Either customer_user_id or profile_id is required.

profile_idString*

An identifier of a user in Adapty. You can find it in the Adapty ID field of the profile in the Adapty Dashboard.

* Either customer_user_id or profile_id is required.


Responses

201: Created

The paywall view is recorded successfully. The response body is blank.

400: Bad Request

The request failed because the value of the status field is invalid. Please check for typos. The possible values are organic, non_organic, and unknown.

Body

ParameterTypeDescription
errorsObject
  • source: (string) Always status.
  • errors: A description of the error. In this case, value is not a valid enumeration member; permitted: 'organic', 'non_organic', 'unknown'
error_codeStringShort error name. Here: enum.
status_codeIntegerHTTP status. Always 400.

Response example

{
"errors": [
{
"source": "status",
"errors": [
"value is not a valid enumeration member; permitted: 'organic', 'non_organic', 'unknown'"
]
}
],
"error_code": "enum",
"status_code": 400
}

401: Unauthorised

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
}