This endpoint includes the following methods:
- GET
- PUT
GET
Description
Returns the subject for this email template in the specified locale.
Authentication
This endpoint supports Basic authentication.
How to Create an Authentication String
Base URL
The base URL for this endpoint is your Janrain Configuration API domain followed by /config/ followed by your application ID. For example, if you are in the US region and your application ID is htb8fuhxnf8e38jrzub3c7pfrr, then your base URL would be:
https://v1.api.us.janrain.com/config/htb8fuhxnf8e38jrzub3c7pfrr
Allowed regions are:
- us
- eu
- au
- sa
- cn
- sg
Request Headers
Parameter | Type | Required | Description |
---|---|---|---|
accept | string | Yes | Indicates the format of the returned data. Allowed values are:
|
Sample Request (curl)
This command returns the subject line of the registrationVerification email template associated with the documentation flow:
Running this command in Postmancurl -X GET \ https://v1.api.us.janrain.com/config/htb8fuhxnf8e38jrzub3c7pfrr/flows/documentation/locales/en-US/mailTemplates/registrationVerification/subject \ -H 'Authorization: Basic
aW1fYV...NfbXk=
'
Responses
200 OK
Response Example (text/plain)
Verify your email
406 Not Acceptable
A GET request was made with an Accept header, or a PUT/POST request was made with a Content-Type header, that is invalid. Refer to the headers section of this method to see what types are acceptable.
Response Example (application/json)
{
"errors": {
"received": "application/json",
"accepts": [
"text/html",
"text/plain"
]
}
}
PUT
Description
Update the subject for this email template in the specified locale.
Authentication
This endpoint supports Basic authentication.
How to Create an Authentication String
Base URL
The base URL for this endpoint is your Janrain Configuration API domain followed by /config/ followed by your application ID. For example, if you are in the US region and your application ID is htb8fuhxnf8e38jrzub3c7pfrr, then your base URL would be:
https://v1.api.us.janrain.com/config/htb8fuhxnf8e38jrzub3c7pfrr
Allowed regions are:
- us
- eu
- au
- sa
- cn
- sg
Request Headers
Content-Type string required
Possible values:
- text/plain
Request Example (text/plain)
Sample Request (curl)
This command updates the subject line of the registrationVerification email templates associated with the documentation flow:
Running this command in Postmancurl -X PUT \ https://v1.api.us.janrain.com/config/htb8fuhxnf8e38jrzub3c7pfrr/flows/documentation/locales/en-US/mailTemplates/registrationVerification/subject \ -H 'Authorization: Basic
aW1fYV...NfbXk=
' \ -H 'Content-Type: text/plain' \ -d '{*#settings*}{*&site_name*}{*/settings*} email verification is required'
Responses
204 No Content
Successfully updated the subject.
406 Not Acceptable
A GET request was made with an Accept header, or a PUT/POST request was made with a Content-Type header, that is invalid. Refer to the headers section of this method to see what types are acceptable.
Response Example (application/json)
{
"errors": {
"received": "application/json",
"accepts": [
"text/html",
"text/plain"
]
}
}