This endpoint returns a list of all salutations. The returned list will be determined by the permissions/access of the API client.
GET
Authorization
The following authorization header is required. The authorisation header should be set to a 'Bearer Token' type
Token |
Response
The response will return an array of 0 to n JSON objects. Each JSON object in the array contains the following properties:
id | int | the id of the salutation |
title | string | the text associated with the salutation |
Permissions
The API Client requires read access to the platform.
Examples
C# Example
var client = new HttpClient(); var request = new HttpRequestMessage(HttpMethod.Get, "https://{platform API url}/api/static/salutations/get"; request.Headers.Add("Authorization", "Bearer {access token}"); var response = await client.SendAsync(request); response.EnsureSuccessStatusCode(); Console.WriteLine(await response.Content.ReadAsStringAsync());
cURL Example
curl --location 'https://{platform API url}/api/static/salutations/get' \ --header 'Authorization: Bearer {access token}'