We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7a6f41 commit b1e555eCopy full SHA for b1e555e
packages/destination-actions/src/destinations/the-trade-desk-crm/awsClient.ts
@@ -43,13 +43,13 @@ export const sendEventToAWS = async (input: SendToAWSRequest) => {
43
const metadataFilePath = `${ACTION_SLUG}/${input.AdvertiserId}/${input.CrmDataId}/meta.json`
44
45
// Create Metadata
46
- const metadata = JSON.stringify({
+ const metadata = {
47
TDDAuthToken: input.TDDAuthToken,
48
AdvertiserId: input.AdvertiserId,
49
CrmDataId: input.CrmDataId,
50
DropOptions: input.DropOptions,
51
RequeueCount: 0
52
- } as TTDEventPayload)
+ } as TTDEventPayload
53
54
// Get S3 Client for Outbound Controller
55
const s3Client = getS3Client('integrationsOutboundController')
0 commit comments