Skip to content

Commit

Permalink
Update Src/VTEXFeedV3Integration.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
gitauto-ai[bot] authored Nov 7, 2024
1 parent dc0a44d commit 89aee53
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Src/VTEXFeedV3Integration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ public VTEXFeedV3Integration(string apiKey, string apiToken)

public async Task<string> GetFeedOrderStatus1Async()
{
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.vtex.com/your-account/feed/orders/status");
var request = new HttpRequestMessage(
HttpMethod.Get,
"https://api.vtex.com/your-account/feed/orders/status"
request.Headers.Add("X-VTEX-API-AppKey", _apiKey);
request.Headers.Add("X-VTEX-API-AppToken", _apiToken);

Expand Down

0 comments on commit 89aee53

Please sign in to comment.