Send rich-text message to a channel:

<aside> ☝

NOTE: Jojo must be a member of a destination channel

</aside>

  1. Grab channelId from your Discord server:

    CleanShot 2024-11-28 at 10.33.58.png

  2. Make this request:

    curl --request POST \\
      --url <https://app.digicord.site/api/v1/send-data> \\
      --header 'Authorization: Bearer <YOUR_API_KEY>' \\
      --header 'Content-Type: application/json' \\
      --data '{
    	"channelId": "1250687651212693600",
    	"payload":{
    		"content": "Hello from API",
    		"embeds": [
    			{
    				"title": "Title here",
    				"description": "Description here",
    				"author": {
    					"name": "Goon"
    				}
    			}
    		]
    	}
    }'
    
  3. Tada!

    CleanShot 2024-11-28 at 10.40.17.png