{
  "info": {
    "name": "PopCloud API v0.1.0",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "description": "Log in with POST /v1/auth/login, then set the accessToken variable. Imports into Insomnia as well."
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.popcloud.ca"
    },
    {
      "key": "accessToken",
      "value": ""
    }
  ],
  "item": [
    {
      "name": "Authentication",
      "item": [
        {
          "name": "Accept Organization Invitation",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/auth/invitations/accept",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "auth",
                "invitations",
                "accept"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"token\": \"\",\n  \"password\": \"\"\n}"
            }
          }
        },
        {
          "name": "Login",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/auth/login",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "auth",
                "login"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"\",\n  \"password\": \"\"\n}"
            }
          }
        },
        {
          "name": "Logout",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/auth/logout",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "auth",
                "logout"
              ]
            }
          }
        },
        {
          "name": "Forgot Password",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/auth/password/forgot",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "auth",
                "password",
                "forgot"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"\"\n}"
            }
          }
        },
        {
          "name": "Reset Password",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/auth/password/reset",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "auth",
                "password",
                "reset"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"token\": \"\",\n  \"new_password\": \"\"\n}"
            }
          }
        },
        {
          "name": "Refresh",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/auth/refresh",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "auth",
                "refresh"
              ]
            }
          }
        },
        {
          "name": "Signup",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/auth/signup",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "auth",
                "signup"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"\",\n  \"password\": \"\",\n  \"org_name\": \"\",\n  \"region\": \"\"\n}"
            }
          }
        },
        {
          "name": "Switch Org",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/auth/switch-org",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "auth",
                "switch-org"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"org_id\": \"\"\n}"
            }
          }
        },
        {
          "name": "Verify Email",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/auth/verify-email",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "auth",
                "verify-email"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"token\": \"\"\n}"
            }
          }
        }
      ]
    },
    {
      "name": "Your account",
      "item": [
        {
          "name": "Me",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/me",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "me"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "Organisation",
      "item": [
        {
          "name": "Get Org",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/org",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "org"
              ]
            }
          }
        },
        {
          "name": "Invite Member",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/org/invitations",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "org",
                "invitations"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"email\": \"\",\n  \"role\": \"\"\n}"
            }
          }
        },
        {
          "name": "Revoke Invitation",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/org/invitations/{invitation_id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "org",
                "invitations",
                "{invitation_id}"
              ]
            }
          }
        },
        {
          "name": "Remove Member",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/org/members/{user_id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "org",
                "members",
                "{user_id}"
              ]
            }
          }
        },
        {
          "name": "Update Member Role",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/org/members/{user_id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "org",
                "members",
                "{user_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"role\": \"\"\n}"
            }
          }
        },
        {
          "name": "Retry Provisioning",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/org/provisioning/retry",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "org",
                "provisioning",
                "retry"
              ]
            }
          }
        },
        {
          "name": "List Team",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/org/team",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "org",
                "team"
              ]
            }
          }
        },
        {
          "name": "List Organizations",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/organizations",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "organizations"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "Credentials",
      "item": [
        {
          "name": "List Credentials",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/credentials",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "credentials"
              ]
            }
          }
        },
        {
          "name": "Create Credential",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/credentials",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "credentials"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"label\": \"\",\n  \"scope_all_buckets\": false,\n  \"bucket_names\": [],\n  \"permissions\": [],\n  \"expires_at\": \"\"\n}"
            }
          }
        },
        {
          "name": "Get Credential",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/credentials/{credential_id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "credentials",
                "{credential_id}"
              ]
            }
          }
        },
        {
          "name": "Update Credential Label",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/credentials/{credential_id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "credentials",
                "{credential_id}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"label\": \"\"\n}"
            }
          }
        },
        {
          "name": "Revoke Credential",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/credentials/{credential_id}/revoke",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "credentials",
                "{credential_id}",
                "revoke"
              ]
            }
          }
        },
        {
          "name": "Rotate Credential",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/credentials/{credential_id}/rotate",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "credentials",
                "{credential_id}",
                "rotate"
              ]
            }
          }
        },
        {
          "name": "Claim Credential",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/credentials/claim",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "credentials",
                "claim"
              ]
            }
          }
        }
      ]
    },
    {
      "name": "Buckets, objects & CORS",
      "item": [
        {
          "name": "List Buckets",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/buckets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "buckets"
              ]
            }
          }
        },
        {
          "name": "Create Bucket",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/buckets",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "buckets"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"label\": \"\",\n  \"tier\": \"\",\n  \"visibility\": \"\",\n  \"encryption\": false\n}"
            }
          }
        },
        {
          "name": "Delete Bucket",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/buckets/{bucket}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "buckets",
                "{bucket}"
              ]
            }
          }
        },
        {
          "name": "Update Bucket",
          "request": {
            "method": "PATCH",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/buckets/{bucket}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "buckets",
                "{bucket}"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"visibility\": \"\",\n  \"encryption\": false\n}"
            }
          }
        },
        {
          "name": "Get CORS",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/buckets/{bucket}/cors",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "buckets",
                "{bucket}",
                "cors"
              ]
            }
          }
        },
        {
          "name": "Put CORS",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/buckets/{bucket}/cors",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "buckets",
                "{bucket}",
                "cors"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"rules\": []\n}"
            }
          }
        },
        {
          "name": "Get Lifecycle",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/buckets/{bucket}/lifecycle",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "buckets",
                "{bucket}",
                "lifecycle"
              ]
            }
          }
        },
        {
          "name": "Put Lifecycle",
          "request": {
            "method": "PUT",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/buckets/{bucket}/lifecycle",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "buckets",
                "{bucket}",
                "lifecycle"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"noncurrent_version_days\": 0,\n  \"unfinished_multipart_days\": 0\n}"
            }
          }
        },
        {
          "name": "Delete Object",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/buckets/{bucket}/objects",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "buckets",
                "{bucket}",
                "objects"
              ]
            }
          }
        },
        {
          "name": "List Objects",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/buckets/{bucket}/objects",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "buckets",
                "{bucket}",
                "objects"
              ]
            }
          }
        },
        {
          "name": "Object Metadata",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/buckets/{bucket}/objects/metadata",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "buckets",
                "{bucket}",
                "objects",
                "metadata"
              ]
            }
          }
        },
        {
          "name": "Create Multipart",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/files/multipart",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "files",
                "multipart"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"bucket\": \"\",\n  \"key\": \"\",\n  \"content_type\": \"\"\n}"
            }
          }
        },
        {
          "name": "Abort Multipart",
          "request": {
            "method": "DELETE",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/files/multipart/{upload_id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "files",
                "multipart",
                "{upload_id}"
              ]
            }
          }
        },
        {
          "name": "Complete Multipart",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/files/multipart/{upload_id}/complete",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "files",
                "multipart",
                "{upload_id}",
                "complete"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"bucket\": \"\",\n  \"key\": \"\",\n  \"parts\": []\n}"
            }
          }
        },
        {
          "name": "List Parts",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/files/multipart/{upload_id}/parts",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "files",
                "multipart",
                "{upload_id}",
                "parts"
              ]
            }
          }
        },
        {
          "name": "Sign Part",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/files/multipart/{upload_id}/sign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "files",
                "multipart",
                "{upload_id}",
                "sign"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"bucket\": \"\",\n  \"key\": \"\",\n  \"part_number\": 0\n}"
            }
          }
        },
        {
          "name": "Presign Download",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/files/presign",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "files",
                "presign"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"bucket\": \"\",\n  \"key\": \"\",\n  \"purpose\": \"\",\n  \"filename\": \"\"\n}"
            }
          }
        },
        {
          "name": "Presign Upload",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              },
              {
                "key": "Authorization",
                "value": "Bearer {{accessToken}}"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/v1/files/upload-url",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "v1",
                "files",
                "upload-url"
              ]
            },
            "body": {
              "mode": "raw",
              "raw": "{\n  \"bucket\": \"\",\n  \"key\": \"\",\n  \"content_type\": \"\"\n}"
            }
          }
        }
      ]
    },
    {
      "name": "System",
      "item": [
        {
          "name": "Health",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/health",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "health"
              ]
            }
          }
        },
        {
          "name": "Ready",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/ready",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "ready"
              ]
            }
          }
        },
        {
          "name": "Version",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "Content-Type",
                "value": "application/json"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/version",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "version"
              ]
            }
          }
        }
      ]
    }
  ]
}
