Skip to content

Instantly share code, notes, and snippets.

@spiritbear
Created August 5, 2013 21:31
Show Gist options
  • Select an option

  • Save spiritbear/6159789 to your computer and use it in GitHub Desktop.

Select an option

Save spiritbear/6159789 to your computer and use it in GitHub Desktop.
XML File that enterprises can send us to create accounts.
<?xml version="1.0" encoding="UTF-8" ?>
<companies>
<company>
<company_name>My Company</company_name>
<company_description>Description</company_description>
<address1>1 Main Street</address1>
<address2>Suite #10</address2>
<city>Berkeley</city>
<state>CA</state>
<zip>CA</zip>
<website>http://wwww.google.com</website>
<users>
<user>
<email>foo.bar@gmail.com</email>
<first_name>First Name</first_name>
<last_name>Last Name</last_name>
<is_manager>1</is_manager>
</user>
<user>
<email>ago.bar@gmail.com</email>
<first_name>Not</first_name>
<last_name>a manager</last_name>
<is_manager>0</is_manager>
</user>
</users>
</company>
</companies>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment