Reputation: 11
I have a system url Endpoint which requires the user to send some mandatory information in the header part, One of which is Content-range in the following format:
"Content-Range": "bytes 0-4/5"; (start range-end range/total size)
I am trying to call the url from logic app using the HTTP action. However this returns 500 Internal server error. On further debugging I understand that Microsoft logic app removes the "Content-Range" header from the generated request message without showing any warning or error. Is there any workaround to avoid the header from being ignored? Thanks.
Upvotes: 1
Views: 787
Reputation: 1
you can mentioned in header section of http like below. enter image description here
Upvotes: 0