Skip to content

Make

There’s no dedicated Dropslate app in Make (Integromat) yet - the HTTP → Make a request module covers everything, the same bearer-token JSON as any other client.

  • URL: https://api.dropslate.top/v1/posts, Method: POST.
  • Headers: Authorization: Bearer ds_live_... - store it as a Make connection or data store entry, not hardcoded in a scenario someone might copy.
  • Body type: Raw → JSON, the same payload as the curl scenario.

Same three-step shape as n8n: an HTTP module to POST /media/uploads, a second one to PUT the file’s bytes to the returned uploadUrl (no auth header needed there), then a third to POST /posts with the resulting mediaId.

See Errors for the {code, message, hint} shape - Make’s HTTP module returns the response body as is, so the same code values apply.