What is the getTestimonialByTestimonialId Method?

This method retrieves the details of a specific testimonial based on ID. Pass in the ID number of a customer testimonial, and retrieve the details such as description, website, business, etc, so they can be displayed in your application.

Method Definition

@WebMethod(action = "getTestimonialByTestimonialId", operationName = "getTestimonialByTestimonialId")
public Testimonial getTestimonialByTestimonialId(String siteKey, String accessKey, String testimonialId)

Expected Response

stdClass Object
(
[return] => stdClass Object
(
[account] => stdClass Object
(
[accountId] => 120132
[accountName] => Testimonials Name
[methodResponse] => stdClass Object
(
[responseStatus] =>
)
[website] => https://www.apptivo.com
)
[cmsFirmSiteId] => 10502
[contact] => stdClass Object
(
[companyName] => Apptivo
[contactId] => 57202
[jobTitle] => Job Title
[lastName] => Testimonials Name
)
[creationDate] => 2012-05-01T23:49:16.338-07:00
[email] => jchinnamuthu@sirahu.com
[sequenceNumber] => 1
[siteTestimonialId] => 10131
[statusCode] => 1000
[statusMessage] => Success
[testimonial] =>
Testimonials Description
[testimonialImageUrl] => https://testwp.dev.net/wp-content/uploads/2012/04/orange-150x116.png
[testimonialStatus] => PENDING_APPROVAL
)
)

Back to API reference.