How can I do a json curl request?

How can i do a json curl request with basic authentication and parse the response through adalo?

Example

curl username:password -X 'POST' \
  'https://api.cccc.com/v1/users' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "UserId": 1
}'