| 
								 Email Templates - Retrieve Information 
								Retrieves information about an existing email tempalte.   
								Headers
	
		|   | 
		 | 
		Key | 
		  | 
		Value | 
		  | 
		Note | 
		 | 
	 
	
		 | 
		 | 
		api_access_key | 
		 | 
		user_api_key | 
		 | 
		Required if not included in the body | 
		 | 
	 							
 
    
								The data to be submitted to the API is composed of the following fields: 
								  
								
									
										|   | 
										 | 
										field | 
										  | 
										Example | 
										  | 
										Note | 
										 | 
									 
									
										 | 
										 | 
										API | 
										 | 
										1.5 | 
										 | 
										Required | 
										 | 
									 
									
										 | 
										 | 
										user_id | 
										 | 
										john1970 | 
										 | 
										Required | 
										 | 
									 
									
										 | 
										 | 
										user_api_key | 
										 | 
										1959ca5645adac9b13dcb3 | 
										 | 
										Required if not included in the headers | 
										 | 
									 
										
										 | 
										 | 
										account_id | 
										 | 
										greatwidgets | 
										 | 
										Required | 
										 | 
									 
									
										 | 
										 | 
										type | 
										 | 
										manage_email_templates | 
										 | 
										Required | 
										 | 
									 
									
										 | 
										 | 
										action | 
										 | 
										info | 
										 | 
										Required | 
										 | 
									 
								
									
										 | 
										 | 
										template_id | 
										 | 
										7 | 
										 | 
										Required | 
										 | 
									 
									
										 | 
										 | 
										 | 
										 | 
										 | 
										 | 
										 | 
										 | 
									 
									
										 | 
										 | 
										Output Format: | 
										 | 
									 
									
										 | 
										 | 
										output | 
										 | 
										JSON or XML | 
										 | 
										Optional. If not provided, defaults to XML | 
										 | 
									 
									
										 | 
										 | 
										callback | 
										 | 
										someFunctionName | 
										 | 
										Optional: JSONP format | 
										 | 
									 
									
										 | 
										 | 
										condensed | 
										 | 
										yes | 
										 | 
										Optional (No white space) Applies only to JSON(P) output | 
										 | 
									 
									
										 | 
										 | 
										 | 
										 | 
										 | 
										 | 
										 | 
										 | 
									 
								 
								  
								Notes:  
								
									Required if not included in the headers								 
								
								Example PHP Request: 
								If you are using PHP, the $data array would look like this: 
								
									- $data['user_id'] = 'john1970';
									
 - 	$data['user_password'] 	= '1959caadac9b13dcb3';	
									
 - $data['type'] = 'manage_email_templates';
									
 - $data['action'] = 'info'; 
									
 - $data['account_id'] = 'greatwidgets';
								
  
								  
								Success XML Response 
								
									- <response status="success">
									
 - <email_template>
									
 - <account_id>greatwidgets</account_id>
									
 - <template_id>7</template_id>
									
 - <template_name>New Customers Email</template_name>
									
 - <template_description>New Customers Email</template_description>
									
 - <template_rule>NEW_CUSTOMER</template_rulen>
									
 - <campaign_id>1111222233334444</campaign_id>
									
 - <campaign_name>Widget Rewards</campaign_name>
									
 - <template_subject>Welcome to Amazing Rewards</template_subject>
									
 - <template_content>Email content goes here</template_content>
									
 - <include_balance>Y</include_balance>
									
 - <include_rewards>Y</include_rewards>
									
 - </email_template>
									
 - </response>
								
  
								Error XML Response: 
								
									- <response status="error">
									
 - <error>Error message</error>
									
 - </response>
								
  
								  
							 |