Having trouble sending downlink with HTTP Integration

Hello,
I am trying to schedule a downlink via curl. I read the documentation on http on the ttn website.
My curl command looks like this:
curl -X POST --data ‘{“dev_id”:“td00”, “payload_raw”:“dGVzdA==”}’ https://integrations.thethingsnetwork.org/ttn-eu/api/v2/down/my-app-id/my-process-id?key=ttn-account-v2.secret

Now I have trouble scheduling the downlink. I see nothing in my ttn-console. I replaced the “my-app-id” in the url with my Application ID, the “my-process-id” with “request_bin_test” (the id I gave the http integration) and “secret” at the end of the url with my Access Key.

I created a URL for the http integration with requestbin.net. Receiving uplinks works just fine.
I never used curl or http protocoll before so I don’t know if I missunderstood the documentation. Are there problems with _ ? or = in the url? I use curl via the Windows terminal and get no error or anything when I execute the command.

Use curl -i or even curl -v to see the response. I guess you’ll be seeing 401 Unauthorized:

You should not replace just the word secret, but all of ttn-account-v2.secret.

This works for me, though it defaults to port 0:

curl -i -X POST --data '{"dev_id": "arjanvanb-ttnode-1", "payload_raw": "dGVzdA=="}' https://integrations.thethingsnetwork.org/ttn-eu/api/v2/down/arjanvanb-app-ttnode/arjanvanb-http-ttnnode?key=ttn-account-v2.kFd<redacted>Vi_il4

HTTP/1.1 202 Accepted
Server: nginx/1.13.7
Date: Wed, 01 Jul 2020 10:20:50 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 0
Connection: keep-alive

:warning: Port 0 is reserved for MAC commands without an application payload, so you should also include "port": 1 or another value in the JSON data. Not doing so, it seems TTN will (currently) use the same port that was used for the uplink. But that’s undocumented behaviour, so surely it’s better to be explicit instead.

Note that the full downlink URL that you need is also in each uplink message that is posted by the HTTP Integration. So, you should see that on RequestBin.

(Aside, I know it’s just a test, but: don’t send text. Not even for a test.)

Thanks for the answer!
I used curl with -i and -v and used the url that came with my uplink. It still doesn’t work and I get a http 400 Bad Request error. I also tried using -H "Content-Type: application/json" because to my understanding the data is encoded in json?
My output log in terminal is as follows:

HTTP/1.1 400 Bad Request
Server: nginx/1.13.7
Date: Fri, 03 Jul 2020 15:21:13 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 0
Connection: keep-alive

My curl command:

curl.exe -i -v -X POST -d ‘{“dev_id”:“td00”, “port”:1, “payload_raw”:“AQIDBA==”}’ https://integrations.thethingsnetwork.org/ttn-eu/api/v2/down/idt00/request_bin_test?key=(APP ACCES KEY)

I also tried it without any “payload_raw” and it didn’t work. Could you also elaborate your last point about not sending text for my payload?
Thanks!

See Using curl or Postman for the HTTP Integration on Windows.

See Best practices to limit application payloads.