Last active
July 26, 2024 12:52
-
-
Save elephantsneverforget/7c06230744a0ed4eca384cc2d0b308ed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"partialFailureError": { | |
"code": 3, | |
// Unfortuneatly it seems only the first error is highlighted. | |
// To reference the details of each error we'll need to index into the "details" array based on the empty objects noted below | |
"message": "Multiple errors in ‘details’. First error: The provided user identifiers are not supported. Use only hashed email or phone number and try again., at conversions[0].user_identifiers[0]", | |
"details": [ | |
{ | |
"@type": "type.googleapis.com/google.ads.googleads.v15.errors.GoogleAdsFailure", | |
"errors": [ | |
{ | |
"errorCode": { | |
"conversionUploadError": "UNSUPPORTED_USER_IDENTIFIER" | |
}, | |
"message": "The provided user identifiers are not supported. Use only hashed email or phone number and try again.", | |
"location": { | |
"fieldPathElements": [ | |
{ | |
"fieldName": "conversions", | |
"index": 0 | |
}, | |
{ | |
"fieldName": "user_identifiers", | |
"index": 0 | |
} | |
] | |
} | |
}, | |
{ | |
"errorCode": { | |
"conversionUploadError": "UNSUPPORTED_USER_IDENTIFIER" | |
}, | |
"message": "The provided user identifiers are not supported. Use only hashed email or phone number and try again.", | |
"location": { | |
"fieldPathElements": [ | |
{ | |
"fieldName": "conversions", | |
"index": 1 | |
}, | |
{ | |
"fieldName": "user_identifiers", | |
"index": 0 | |
} | |
] | |
} | |
} | |
], | |
"requestId": "7h_iqerbyZNeHeQ2RgH66g" | |
} | |
] | |
}, | |
"results": [ | |
{}, // empty result objects indicate errors | |
{}, // empty result objects indicate errors | |
{ | |
"gclid": "Cj0KCQjw0ruyBhDuARIsANSZ3wpg95ru4EdQHOYY2cDx6jUtNbxmueoDOz7KlJQGHlvxIYyXjl9z_MYaApPWEALw_wcB", | |
"conversionAction": "customers/1353531503/conversionActions/6473885208", | |
"conversionDateTime": "2024-05-23 10:48:49-06:00", | |
"userIdentifiers": [ | |
{ | |
"userIdentifierSource": "FIRST_PARTY", | |
"hashedPhoneNumber": "e530805a5193df05da22d88241f15b7e40a5d16e3e11fe9aa7a20e586c8be126" | |
} | |
] | |
} | |
], | |
"jobId": "3331601357745468880" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment