These credentials are provided when you create a project in your account dashboard.
username:password
→ APIKey:Signature
"12345"
and my Signature is "xyz"
"12345:xyz"
curl -X GET "https://api.yourdomain.com/v1/templates/black-friday-email-campaign-template" \
-H "Accept: application/json" \
-u "your_api_key:your_signature"
-X GET
: HTTP method (GET in this case).-H "Accept: application/json"
: Specifies JSON as the response format.-u "your_api_key:your_signature"
: Provides Basic Auth credentials.