Authorizations
The authentication system on Partoo API is using API Key that should be put in the header of the request (the name of the header is x-APIKey
). An api_key is linked to a user. This user's role will give you different access level to the API features.
Path Parameters
Template id
Body
The new title of the template
"Quote request"
The new icon linked to the template
"📝"
The new template content as a stringified JSON object with "_version": "0.1"
inside
"{\"text\": \"Hello, thank you for your request. For a quote, please contact us at 0123456789.\" \"_version\": \"0.1\"}"
Response
The message template created
"642bca3d2830e15c6806cc33"
The title of the message template.
"Quote request"
The content of the message template should be a stringified JSON object. This includes both the message content ("text"
) and the pair "_version": "0.1"
.
The "text"
can contain placeholders (values from the enum above within double curly braces {{}}
) that will be replaced with the actual values when the message is sent.
client_full_name
, client_first_name
, business_name
, my_first_name
, rb_link
, address
, website_url
, phone_number
"{\"text\": \"Hello {{client_full_name}}, thank you for your request. For a quote, please contact us at 0123456789.\" \"_version\": \"0.1\"}"
The icon associated with the message template.
"📝"
The organization ID that the message template belongs to.
123
The date and time when the message template was created, in ISO 8601 format.
"2023-01-31T16:22:17.327878+00:00"
The date and time when the message template was last updated, in ISO 8601 format.
"2023-02-15T10:00:00.000000+00:00"
The number of times the message template has been used.
50