PingOne Platform APIs

Read All Contents

 

GET {{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents

The GET {{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents endpoint returns a list of all content resources associated with the template specified in the request URL.

Query parameters
Query parameter Attributes (or allowed limits)

filter

N/A

limit

(1-100)

expand

N/A

order

N/A

Headers

Authorization      Bearer {{accessToken}}

Example Request

  • cURL

  • C#

  • Go

  • HTTP

  • Java

  • jQuery

  • NodeJS

  • Python

  • PHP

  • Ruby

  • Swift

curl --location --globoff '{{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents' \
--header 'Authorization: Bearer {{accessToken}}'
var options = new RestClientOptions("{{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Get);
request.AddHeader("Authorization", "Bearer {{accessToken}}");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main

import (
  "fmt"
  "net/http"
  "io"
)

func main() {

  url := "{{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents"
  method := "GET"

  client := &http.Client {
  }
  req, err := http.NewRequest(method, url, nil)

  if err != nil {
    fmt.Println(err)
    return
  }
  req.Header.Add("Authorization", "Bearer {{accessToken}}")

  res, err := client.Do(req)
  if err != nil {
    fmt.Println(err)
    return
  }
  defer res.Body.Close()

  body, err := io.ReadAll(res.Body)
  if err != nil {
    fmt.Println(err)
    return
  }
  fmt.Println(string(body))
}
GET /environments/{{envID}}/templates/{{templateName}}/contents HTTP/1.1
Host: {{apiPath}}
Authorization: Bearer {{accessToken}}
OkHttpClient client = new OkHttpClient().newBuilder()
  .build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
  .url("{{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents")
  .method("GET", body)
  .addHeader("Authorization", "Bearer {{accessToken}}")
  .build();
Response response = client.newCall(request).execute();
var settings = {
  "url": "{{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents",
  "method": "GET",
  "timeout": 0,
  "headers": {
    "Authorization": "Bearer {{accessToken}}"
  },
};

$.ajax(settings).done(function (response) {
  console.log(response);
});
var request = require('request');
var options = {
  'method': 'GET',
  'url': '{{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents',
  'headers': {
    'Authorization': 'Bearer {{accessToken}}'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});
import requests

url = "{{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents"

payload = {}
headers = {
  'Authorization': 'Bearer {{accessToken}}'
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)
<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('{{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents');
$request->setMethod(HTTP_Request2::METHOD_GET);
$request->setConfig(array(
  'follow_redirects' => TRUE
));
$request->setHeader(array(
  'Authorization' => 'Bearer {{accessToken}}'
));
try {
  $response = $request->send();
  if ($response->getStatus() == 200) {
    echo $response->getBody();
  }
  else {
    echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
    $response->getReasonPhrase();
  }
}
catch(HTTP_Request2_Exception $e) {
  echo 'Error: ' . $e->getMessage();
}
require "uri"
require "net/http"

url = URI("{{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents")

http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["Authorization"] = "Bearer {{accessToken}}"

response = http.request(request)
puts response.read_body
var request = URLRequest(url: URL(string: "{{apiPath}}/environments/{{envID}}/templates/{{templateName}}/contents")!,timeoutInterval: Double.infinity)
request.addValue("Bearer {{accessToken}}", forHTTPHeaderField: "Authorization")

request.httpMethod = "GET"

let task = URLSession.shared.dataTask(with: request) { data, response, error in
  guard let data = data else {
    print(String(describing: error))
    return
  }
  print(String(data: data, encoding: .utf8)!)
}

task.resume()

Example Response

200 OK

{
    "_links": {
        "template": {
            "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
        },
        "next": {
            "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents?cursor=37e99756-04cb-7311-168a-3c261fb78541"
        },
        "environment": {
            "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
        },
        "self": {
            "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents"
        }
    },
    "_embedded": {
        "contents": [
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/e1b92ecd-ad41-4819-8124-d5cc4a668ee0"
                    }
                },
                "id": "e1b92ecd-ad41-4819-8124-d5cc4a668ee0",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.405Z",
                "updatedAt": "2025-03-18T16:09:10.312Z",
                "locale": "en",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "1328440154815632",
                    "name": "device_pairing____27",
                    "category": "AUTHENTICATION",
                    "language": "en_US"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/18254562-9838-40b8-bb59-eee681147eed"
                    }
                },
                "id": "18254562-9838-40b8-bb59-eee681147eed",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2025-03-17T13:19:38.080Z",
                "updatedAt": "2025-03-17T13:19:38.080Z",
                "locale": "en",
                "variant": "Device Pairing custom",
                "template": {
                    "id": "device_pairing"
                },
                "subject": "PingOne: Finish pairing your device",
                "body": "To finish pairing your device, enter this code: ${OTP}",
                "deliveryMethod": "Email",
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/25b11b76-9224-4749-b776-3fc75854d7b6"
                    }
                },
                "id": "25b11b76-9224-4749-b776-3fc75854d7b6",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2025-03-17T13:19:38.078Z",
                "updatedAt": "2025-03-17T13:19:38.078Z",
                "locale": "en",
                "variant": "Device Pairing custom",
                "template": {
                    "id": "device_pairing"
                },
                "content": "PingOne: To finish pairing your device, enter this code: ${OTP}",
                "deliveryMethod": "SMS",
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/bca3ec79-2730-40ff-bdf2-2018b9132071"
                    }
                },
                "id": "bca3ec79-2730-40ff-bdf2-2018b9132071",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2025-03-17T13:19:38.078Z",
                "updatedAt": "2025-03-17T13:19:38.078Z",
                "locale": "en",
                "variant": "Device Pairing custom",
                "template": {
                    "id": "device_pairing"
                },
                "content": "Hello <pause1sec> your passcode is <sayCharValue>${OTP}</sayCharValue><pause1sec><pause1sec><repeatMessage val=2>I repeat <pause1sec>your code is <sayCharValue>${OTP}</sayCharValue></repeatMessage>",
                "deliveryMethod": "Voice",
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/9820c8e9-9ff1-4f6a-a712-3eeac591bd6e"
                    }
                },
                "id": "9820c8e9-9ff1-4f6a-a712-3eeac591bd6e",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.580Z",
                "updatedAt": "2024-09-19T09:19:21.700Z",
                "locale": "nl",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "2223282941382315"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/90fbaf88-9d1b-485b-a67c-13e10938bd8e"
                    }
                },
                "id": "90fbaf88-9d1b-485b-a67c-13e10938bd8e",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.566Z",
                "updatedAt": "2024-09-19T09:19:20.695Z",
                "locale": "tr",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "417936280731390"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/3656849a-bc31-47cf-8c49-cea83a65f6e0"
                    }
                },
                "id": "3656849a-bc31-47cf-8c49-cea83a65f6e0",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.552Z",
                "updatedAt": "2024-09-19T09:19:19.867Z",
                "locale": "pl",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "442469314790448"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/6ed79a2d-af98-4adf-bd26-fac2e0bf07e8"
                    }
                },
                "id": "6ed79a2d-af98-4adf-bd26-fac2e0bf07e8",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.538Z",
                "updatedAt": "2024-09-19T09:19:18.912Z",
                "locale": "ja",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "349986574694115"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/eef90ef1-6f91-4f32-a16e-fb0398ee0e36"
                    }
                },
                "id": "eef90ef1-6f91-4f32-a16e-fb0398ee0e36",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.523Z",
                "updatedAt": "2024-09-19T09:19:17.989Z",
                "locale": "th",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "1128975515085600"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/8869c5e0-71d3-4491-b549-1891bdfd815c"
                    }
                },
                "id": "8869c5e0-71d3-4491-b549-1891bdfd815c",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.508Z",
                "updatedAt": "2024-09-19T09:19:15.384Z",
                "locale": "cs",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "620547796736403"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/9229b0b2-fa77-4a52-ab74-7ad0125c84d0"
                    }
                },
                "id": "9229b0b2-fa77-4a52-ab74-7ad0125c84d0",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.488Z",
                "updatedAt": "2024-09-19T09:19:14.912Z",
                "locale": "es",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "725273099508443"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/49c04370-b76b-4666-8c5b-566ef39b144e"
                    }
                },
                "id": "49c04370-b76b-4666-8c5b-566ef39b144e",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.474Z",
                "updatedAt": "2024-09-19T09:19:14.112Z",
                "locale": "hu",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "389111070488312"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/515d44fd-02c3-4f9a-8b3c-53b64200e19b"
                    }
                },
                "id": "515d44fd-02c3-4f9a-8b3c-53b64200e19b",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.455Z",
                "updatedAt": "2024-09-19T09:19:13.108Z",
                "locale": "fr",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "781753300675528"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/68b70c88-7924-486b-94ba-ceb6b82268f0"
                    }
                },
                "id": "68b70c88-7924-486b-94ba-ceb6b82268f0",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.441Z",
                "updatedAt": "2024-09-19T09:19:11.486Z",
                "locale": "it",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "434310179160043"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/2d3910bf-3175-43c0-a078-8a8a2fc22aae"
                    }
                },
                "id": "2d3910bf-3175-43c0-a078-8a8a2fc22aae",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.394Z",
                "updatedAt": "2024-09-19T09:19:09.154Z",
                "locale": "ko",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "894794652439613"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/f7a65020-3adb-4ff5-87bb-ca4c8a81977c"
                    }
                },
                "id": "f7a65020-3adb-4ff5-87bb-ca4c8a81977c",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.380Z",
                "updatedAt": "2024-09-19T09:19:07.282Z",
                "locale": "ru",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "364621509872274"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/62d1980b-6b14-407f-8bd2-581d645d79cf"
                    }
                },
                "id": "62d1980b-6b14-407f-8bd2-581d645d79cf",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2024-09-17T14:26:05.358Z",
                "updatedAt": "2024-09-19T09:19:06.662Z",
                "locale": "de",
                "template": {
                    "id": "device_pairing"
                },
                "deliveryMethod": "WhatsApp",
                "whatsAppTemplate": {
                    "id": "1535649713957168"
                },
                "default": false
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/6aeea125-cdc4-7a4e-3391-b079cf19ce1f"
                    }
                },
                "id": "6aeea125-cdc4-7a4e-3391-b079cf19ce1f",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2021-09-26T08:34:36.000Z",
                "updatedAt": "2021-09-26T08:34:36.000Z",
                "locale": "ko",
                "template": {
                    "id": "device_pairing"
                },
                "subject": "PingOne: PingOne: 장치 페어링 완료",
                "body": "장치 페어링을 완료하려면 다음 코드를 입력하십시오. ${OTP}",
                "deliveryMethod": "Email",
                "default": true
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/66efbf0f-0682-7d54-2dfb-9785a96ad14c"
                    }
                },
                "id": "66efbf0f-0682-7d54-2dfb-9785a96ad14c",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2021-09-26T08:34:36.000Z",
                "updatedAt": "2021-09-26T08:34:36.000Z",
                "locale": "de",
                "template": {
                    "id": "device_pairing"
                },
                "content": "Hallo <pause1sec> Ihr Kopplungscode lautet <sayCharValue>${OTP}</sayCharValue><pause1sec>Ich wiederhole, Ihr Code lautet <sayCharValue>${OTP}</sayCharValue>",
                "deliveryMethod": "Voice",
                "default": true
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/54553414-4ec5-7feb-11ff-57e563a0f15a"
                    }
                },
                "id": "54553414-4ec5-7feb-11ff-57e563a0f15a",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2021-09-26T08:34:36.000Z",
                "updatedAt": "2021-09-26T08:34:36.000Z",
                "locale": "fr",
                "template": {
                    "id": "device_pairing"
                },
                "subject": "PingOne : Terminer le jumelage de votre appareil",
                "body": "Pour terminer le jumelage de votre appareil, entrez le code suivant : ${OTP}",
                "deliveryMethod": "Email",
                "default": true
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/49f8c246-b5e1-7ea0-301a-199d9dfb0fc3"
                    }
                },
                "id": "49f8c246-b5e1-7ea0-301a-199d9dfb0fc3",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2021-09-26T08:34:36.000Z",
                "updatedAt": "2021-09-26T08:34:36.000Z",
                "locale": "ru",
                "template": {
                    "id": "device_pairing"
                },
                "subject": "PingOne: Завершите сопряжение Вашего устройства",
                "body": "Чтобы завершить сопряжение устройства, введите этот код: ${OTP}",
                "deliveryMethod": "Email",
                "default": true
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/44ab2818-73b3-776a-16e2-02057535a8ad"
                    }
                },
                "id": "44ab2818-73b3-776a-16e2-02057535a8ad",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2021-09-26T08:34:36.000Z",
                "updatedAt": "2021-09-26T08:34:36.000Z",
                "locale": "es",
                "template": {
                    "id": "device_pairing"
                },
                "content": "Hola, <pause1sec>, tu código de vinculación es <sayCharValue>${OTP}</sayCharValue><pause1sec>. Repito, tu código es <sayCharValue>${OTP}</sayCharValue>",
                "deliveryMethod": "Voice",
                "default": true
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/44a7309f-a473-739b-0be4-19a1fa178ed5"
                    }
                },
                "id": "44a7309f-a473-739b-0be4-19a1fa178ed5",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2021-09-26T08:34:36.000Z",
                "updatedAt": "2021-09-26T08:34:36.000Z",
                "locale": "it",
                "template": {
                    "id": "device_pairing"
                },
                "content": "PingOne: Per terminare l'associazione del dispositivo, inserisci questo codice: ${OTP}",
                "deliveryMethod": "SMS",
                "default": true
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/4265d666-a202-7de7-1ff5-8531b4a4595f"
                    }
                },
                "id": "4265d666-a202-7de7-1ff5-8531b4a4595f",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2021-09-26T08:34:36.000Z",
                "updatedAt": "2021-09-26T08:34:36.000Z",
                "locale": "pt",
                "template": {
                    "id": "device_pairing"
                },
                "subject": "PingOne: Conclua o emparelhamento do seu dispositivo",
                "body": "Para concluir o emparelhamento do seu dispositivo, introduza o seguinte código: ${OTP}",
                "deliveryMethod": "Email",
                "default": true
            },
            {
                "_links": {
                    "template": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/templates/device_pairing/contents/37e99756-04cb-7311-168a-3c261fb78541"
                    }
                },
                "id": "37e99756-04cb-7311-168a-3c261fb78541",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2021-09-26T08:34:36.000Z",
                "updatedAt": "2021-09-26T08:34:36.000Z",
                "locale": "pt",
                "template": {
                    "id": "device_pairing"
                },
                "content": "PingOne: Para concluir o emparelhamento do seu dispositivo, introduza o seguinte código: ${OTP}",
                "deliveryMethod": "SMS",
                "default": true
            }
        ]
    },
    "count": 59,
    "size": 25
}