Embedded AP/AR
Everything you need to launch your AP/AR program
1curl -X PUT https://api.mercoa.com/entity/ent_a0f6ea94-0761-4a5e-a416-3c453cb7eced/email-template/emt_8545a84e-a45f-41bf-bdf1-33b42a55812c \2 -H "Authorization: Bearer <token>" \3 -H "Content-Type: application/json" \4 -d '{5 "templateType": "PAYMENT",6 "name": "Generic Payment Email",7 "subject": "Action Required - Your payment is due",8 "content": "<h1>Your invoice has been sent.</h1>",9 "isDefault": true10}'
1{2 "id": "emt_8545a84e-a45f-41bf-bdf1-33b42a55812c",3 "entityId": "ent_21661ac1-a2a8-4465-a6c0-64474ba8181d",4 "templateType": "PAYMENT",5 "name": "Generic Payment Email",6 "subject": "Action Required - Your payment is due",7 "content": "<h1>Your invoice has been sent.</h1>",8 "isDefault": true9}
Bearer authentication of the form Bearer <token>, where token is your auth token.
Bearer <token>