From 384b747575ca7c5fa5e44a12af43d4e91198c10d Mon Sep 17 00:00:00 2001 From: timkim Date: Thu, 13 Mar 2025 15:20:51 -0700 Subject: [PATCH 1/3] Fixes to get builds working again --- src/pages/guides/endpoints/data-feed/index.md | 23 +++++++++++++------ 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/src/pages/guides/endpoints/data-feed/index.md b/src/pages/guides/endpoints/data-feed/index.md index 478651e23..aec9b3401 100644 --- a/src/pages/guides/endpoints/data-feed/index.md +++ b/src/pages/guides/endpoints/data-feed/index.md @@ -49,7 +49,7 @@ Use this endpoint to get datafeeds for a report suite. Click the **Request** tab in the following example to see a cURL request for this endpoint. Click the **Response** tab to see a successful JSON response for the request. - + #### Request ```curl @@ -220,7 +220,12 @@ curl -X 'POST' \ #### Response -A successful request returns the `200 OK` response. +```json +{ + "data": [ + ] +} +``` ### Request and response parameters @@ -237,7 +242,7 @@ Use this endpoint to retrieve datafeeds with a specified datafeed ID. To obtain Click the **Request** tab in the following example to see a cURL request for this endpoint. Click the **Response** tab to see a successful JSON response for the request. - + #### Request ```curl @@ -363,7 +368,12 @@ curl -X 'PUT' \ #### Response -A successful request returns the `200 OK` response. +```json +{ + "data": [ + ] +} +``` ### Request and response parameters @@ -444,7 +454,6 @@ curl -X 'POST' \ } ``` - ### Request and response parameters For a full list of parameters, see the [Data Feed API Reference](https://adobedocs.github.io/analytics-2.0-apis/?urls.primaryName=Data%20Feed%20APIs). @@ -473,8 +482,8 @@ curl -X 'GET' \ #### Response - ```json - { +```json +{ "limit": 2, "offset": 0, "data": [ From 3fa7e4b751db5761bb4298584291c383de59a37b Mon Sep 17 00:00:00 2001 From: timkim Date: Thu, 13 Mar 2025 15:25:24 -0700 Subject: [PATCH 2/3] Change these back to text --- src/pages/guides/endpoints/data-feed/index.md | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/src/pages/guides/endpoints/data-feed/index.md b/src/pages/guides/endpoints/data-feed/index.md index aec9b3401..350060934 100644 --- a/src/pages/guides/endpoints/data-feed/index.md +++ b/src/pages/guides/endpoints/data-feed/index.md @@ -220,12 +220,7 @@ curl -X 'POST' \ #### Response -```json -{ - "data": [ - ] -} -``` +A successful request returns the `200 OK` response. ### Request and response parameters @@ -368,12 +363,7 @@ curl -X 'PUT' \ #### Response -```json -{ - "data": [ - ] -} -``` +A successful request returns the `200 OK` response. ### Request and response parameters From dd5c3aa243584542198683fd5d93bf4baaa8c4aa Mon Sep 17 00:00:00 2001 From: timkim Date: Fri, 14 Mar 2025 12:22:26 -0700 Subject: [PATCH 3/3] Fix space issue --- src/pages/guides/endpoints/data-feed/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/guides/endpoints/data-feed/index.md b/src/pages/guides/endpoints/data-feed/index.md index 37314b411..f20fb4811 100644 --- a/src/pages/guides/endpoints/data-feed/index.md +++ b/src/pages/guides/endpoints/data-feed/index.md @@ -59,6 +59,7 @@ curl -X 'GET' \ -H "x-api-key: {CLIENT_ID}" \ -H "Authorization: Bearer {ACCESS_TOKEN}" ``` + #### Response ```json