Pingdom Home

212-796-6890

Business hours 3 am-5 pm EST.

Pingdom API / function Check_getList

Description

Returns names of user's checks.

Arguments

stringAPIKey (Required)

API key. You will find your API key in the 'Pingdom API' section of Pingdom Panel.

stringsessionId (Required)

Session ID obtained by calling Auth_login function.

Return value

Check_GetListResponseCheck_GetListResponse

Response object of Check_getList function. It contains field for status of the performed operation, and field for list of check names for current user.

Example request

				
<soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
	<q1:Check_getList xmlns:q1="urn:methods">
		<APIKey xsi:type="xsd:string">abcdefgh0123456789abcdefgh</APIKey>
		<sessionId xsi:type="xsd:string">3666e09b6a17fe657624781421a9e231</sessionId>
	</q1:Check_getList></soap:Body>
</soap:Envelope>
			

Example response

				
<SOAP-ENV:Body>
	<ns1:getCheckNamesResponse>
		<return xsi:type="ns2:Check_GetListResponse">
			<status xsi:type="xsd:int">0</status>
			<checkNames SOAP-ENC:arrayType="xsd:string[1]" xsi:type="ns2:CheckNamesArray">
				<item xsi:type="xsd:string">Test check</item>
			</checkNames>
		</return>
	</ns1:getCheckNamesResponse>
</SOAP-ENV:Body>