|
| 1 | +### How to create a new Org and User |
| 2 | + |
| 3 | +Run this script in order to create a new org (tenant) and user for that org. |
| 4 | + |
| 5 | +**Prequisites** |
| 6 | +1. you must have `jq` installed |
| 7 | + |
| 8 | +## 0. Export your admin-auth for your control plane: |
| 9 | + |
| 10 | +You need to use your admin-auth, that's the `HomeDeploymentAdminSec` |
| 11 | + |
| 12 | +``` |
| 13 | +$ export ADMINAUTH=35623631356165652d386432652d343630362d383331342d326539333633663565356163 |
| 14 | +$ export BASEURL='https://broken-average-adm.aws-use1.cloud-ara.tyk.io' |
| 15 | +``` |
| 16 | + |
| 17 | +## 1. Create a new org using the special admin API: |
| 18 | + |
| 19 | +You can copy and paste the following command. |
| 20 | +It will create a new org, and save the ORGID to an environment variable called `ORGID` |
| 21 | + |
| 22 | +``` |
| 23 | +$ export ORGID=$(curl --location --request POST \ |
| 24 | +$BASEURL'/admin/organisations/' \ |
| 25 | +--header 'admin-auth:'$ADMINAUTH \ |
| 26 | +--header 'Content-Type: application/json' \ |
| 27 | +--data-raw '{ |
| 28 | + "id": "", |
| 29 | + "owner_name": "my-org", |
| 30 | + "owner_slug": "", |
| 31 | + "cname_enabled": true, |
| 32 | + "cname": "", |
| 33 | + "apis": [], |
| 34 | + "sso_enabled": false, |
| 35 | + "developer_quota": 0, |
| 36 | + "developer_count": 0, |
| 37 | + "event_options": { |
| 38 | + "hashed_key_event": { |
| 39 | + "webhook": "", |
| 40 | + "email": "", |
| 41 | + "redis": true |
| 42 | + }, |
| 43 | + "key_event": { |
| 44 | + "webhook": "", |
| 45 | + "email": "", |
| 46 | + "redis": true |
| 47 | + } |
| 48 | + }, |
| 49 | + "hybrid_enabled": true, |
| 50 | + "ui": { |
| 51 | + "languages": {}, |
| 52 | + "hide_help": false, |
| 53 | + "default_lang": "", |
| 54 | + "login_page": {}, |
| 55 | + "nav": {}, |
| 56 | + "uptime": {}, |
| 57 | + "portal_section": {}, |
| 58 | + "designer": {}, |
| 59 | + "dont_show_admin_sockets": false, |
| 60 | + "dont_allow_license_management": false, |
| 61 | + "dont_allow_license_management_view": false, |
| 62 | + "cloud": false |
| 63 | + }, |
| 64 | + "org_options_meta": {} |
| 65 | +}' | jq .Meta) |
| 66 | +``` |
| 67 | + |
| 68 | +Test it |
| 69 | + |
| 70 | +``` |
| 71 | +$ echo $ORGID |
| 72 | +"5ff337efffe39c00010bfe66" |
| 73 | +``` |
| 74 | + |
| 75 | + |
| 76 | +## 2. Create User |
| 77 | + |
| 78 | +The following command will create an admin user for our new org, and save the response into an environment variable. |
| 79 | + |
| 80 | +``` |
| 81 | +$ curl --location --request POST $BASEURL'/admin/users/' \ |
| 82 | +--header 'Content-Type: application/json' \ |
| 83 | +--header 'admin-auth:'$ADMINAUTH \ |
| 84 | +--data-raw '{ |
| 85 | + "org_id":'$ORGID', |
| 86 | + "first_name": "myuser", |
| 87 | + "last_name": "helloworld", |
| 88 | + "email_address": "[email protected]", |
| 89 | + "active": true, |
| 90 | + "user_permissions": { "IsAdmin": "admin" } |
| 91 | +}' | jq .Meta | jq --arg password mypassword123 '. + {password: $password}' |
| 92 | +
|
| 93 | +{ |
| 94 | + "api_model": {}, |
| 95 | + "first_name": "myuser", |
| 96 | + "last_name": "helloworld", |
| 97 | + "email_address": "[email protected]", |
| 98 | + "org_id": "5ff337efffe39c00010bfe66", |
| 99 | + "active": true, |
| 100 | + "id": "5ff33ae99604e8ab100133e1", |
| 101 | + "access_key": "e5fd5e3da7684edf61c2a7ab22a27e12", |
| 102 | + "user_permissions": { |
| 103 | + "IsAdmin": "admin" |
| 104 | + }, |
| 105 | + "group_id": "", |
| 106 | + "password_max_days": 0, |
| 107 | + "password_updated": "0001-01-01T00:00:00Z", |
| 108 | + "PWHistory": [], |
| 109 | + "last_login_date": "0001-01-01T00:00:00Z", |
| 110 | + "created_at": "2021-01-04T15:57:29.862Z", |
| 111 | + "password": "mypassword123" |
| 112 | +} |
| 113 | +``` |
| 114 | + |
| 115 | +We take the `id` from above, that is our user id, and save it into an environment variable: |
| 116 | + |
| 117 | +``` |
| 118 | +$ export USERID=5ff33ae99604e8ab100133e1 |
| 119 | +``` |
| 120 | + |
| 121 | + |
| 122 | +And now we run the following curl to set a password: |
| 123 | + |
| 124 | +``` |
| 125 | +$ curl --location --request PUT $BASEURL'/admin/users/'$USERID \ |
| 126 | +--header 'Content-Type: application/json' \ |
| 127 | +--header 'admin-auth:'$ADMINAUTH \ |
| 128 | +--data-raw '{ |
| 129 | + "api_model": {}, |
| 130 | + "first_name": "myuser", |
| 131 | + "last_name": "helloworld", |
| 132 | + "email_address": "[email protected]", |
| 133 | + "org_id": "5ff337efffe39c00010bfe66", |
| 134 | + "active": true, |
| 135 | + "id": "5ff33b5e9604e8ab10016433", |
| 136 | + "access_key": "3d79edf821264cdc7ab27640bac300f8", |
| 137 | + "user_permissions": { |
| 138 | + "IsAdmin": "admin" |
| 139 | + }, |
| 140 | + "group_id": "", |
| 141 | + "password_max_days": 0, |
| 142 | + "password_updated": "0001-01-01T00:00:00Z", |
| 143 | + "PWHistory": [], |
| 144 | + "last_login_date": "0001-01-01T00:00:00Z", |
| 145 | + "created_at": "2021-01-04T15:59:26.685Z", |
| 146 | + "password": "mypassword123" |
| 147 | +}' |
| 148 | + |
| 149 | +
|
| 150 | +{"Status":"OK","Message":"User updated",...}% |
| 151 | +``` |
| 152 | + |
| 153 | +That's it! |
| 154 | + |
| 155 | +Now we can log in with: |
| 156 | + |
| 157 | +``` |
| 158 | + |
| 159 | +mypassword123 |
| 160 | +``` |
0 commit comments