diff --git a/partner.md b/partner.md
new file mode 100644
index 0000000..76ed8bc
--- /dev/null
+++ b/partner.md
@@ -0,0 +1,35 @@
+# Partner API Documentation
+
+The partner account creation URL is `https://app.makeplans.com/api/` for production apps and `https://app.test.makeplans.net/api/` for test apps.
+
+Only account creation is done at this URL. All other requests are done on the URL for the API account subdomain.
+
+## Account
+
+### Add new account
+
+`POST /client` will create a new client and user.
+
+The initial user is set as admin on the account. The attributes for creation are limited. See API documentation for updating other attributes on the account or to add additional users.
+
+#### Client Attributes
+
+
+ Name | Type | Description |
+ subdomain | String | Required |
+ email | String | Required |
+ name | String | Required |
+ time_zone | String | Required |
+ country_code | String | Required. ISO 3166-1 alpha-2. |
+ locale | String | Required. Supported locales: 'en', 'sv' and 'nb'. Default: 'en'. |
+
+
+#### User Attributes
+
+
+ Name | Type | Description |
+ name | String | Required |
+ email | String | Required |
+ password | String | Required |
+ phone_number | String | Also available as phonenumber (deprecated). |
+
\ No newline at end of file