{
    "variable": [
        {
            "id": "baseUrl",
            "key": "baseUrl",
            "type": "string",
            "name": "string",
            "value": "https:\/\/ruhline-api.test"
        }
    ],
    "info": {
        "name": "Ruhline API API Documentation",
        "_postman_id": "f2d9d494-3532-4051-a616-a8ad9ff48431",
        "description": "Ruhline API \u2014 authentication and role-based access for customers, admins, staff, and coaches, plus public catalogs, checkout, enrollments, reviews, disputes, and payouts.",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.1.0\/collection.json"
    },
    "item": [
        {
            "name": "Customer Authentication",
            "description": "\nAPIs for customer authentication, registration, and password management.",
            "item": [
                {
                    "name": "Register a new customer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"john.doe@example.com\",\"password\":\"password123\",\"terms_accepted\":true,\"password_confirmation\":\"password123\"}"
                        },
                        "description": "Register a new customer account. After registration, a verification email will be sent to the provided email address.\nThe customer must verify their email before they can log in.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Customer registered successfully. Please check your email to verify your account.\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"John Doe\",\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"email_verified_at\": null,\n      \"roles\": [\"customer\"]\n    },\n    \"message\": \"Registration successful. Please verify your email address before logging in.\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Validation failed\",\n  \"errors\": {\n    \"email\": [\"This email address is already registered.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Login customer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"john.doe@example.com\",\"password\":\"password123\"}"
                        },
                        "description": "Authenticate a customer and return an access token. The customer must have verified their email address before logging in.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Login successful\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"John Doe\",\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"email_verified_at\": \"2025-01-20T17:25:00+00:00\",\n      \"roles\": [\"customer\"],\n      \"profile\": {\n        \"phone\": \"1234567890\",\n        \"phone_country_code\": {\n          \"id\": 1,\n          \"phone_code\": \"+1\",\n          \"intl_dialing_prefix\": \"1\"\n        },\n        \"address_line_1\": \"123 Main Street\",\n        \"address_line_2\": \"Apt 4B\",\n        \"landmark\": \"Near Central Park\",\n        \"country\": {\n          \"id\": 1,\n          \"name\": \"United States\"\n        },\n        \"state\": {\n          \"id\": 1,\n          \"name\": \"New York\"\n        },\n        \"city\": {\n          \"id\": 1,\n          \"name\": \"New York City\"\n        },\n        \"postal_code\": \"12345\",\n        \"profile_image\": \"http:\/\/example.com\/storage\/customer-profiles\/image.jpg\"\n      }\n    },\n    \"token\": \"1|xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Please verify your email address before logging in. Check your inbox for the verification link.\",\n  \"errors\": {\n    \"email\": [\"Please verify your email address before logging in. Check your inbox for the verification link.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Forgot password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/forgot-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/forgot-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"john.doe@example.com\"}"
                        },
                        "description": "Send a password reset link to the customer's email address. The link will be sent to the frontend URL configured in the system.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"If a customer account exists with that email, we have sent a password reset link.\",\n  \"data\": {\n    \"message\": \"If a customer account exists with that email, we have sent a password reset link.\",\n    \"frontend_url\": \"http:\/\/localhost:3000\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Reset password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/reset-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/reset-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"token\":\"abc123...\",\"email\":\"john.doe@example.com\",\"password\":\"newpassword123\",\"password_confirmation\":\"newpassword123\"}"
                        },
                        "description": "Reset the customer's password using the token received in the password reset email.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Password has been reset successfully. You can now login with your new password.\",\n  \"data\": {\n    \"message\": \"Password has been reset successfully. You can now login with your new password.\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Invalid or expired reset token.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Verify email address (POST)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/email\/verify",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/email\/verify"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"id\":1,\"hash\":\"abc123...\",\"expires\":1234567890,\"signature\":\"xyz789...\"}"
                        },
                        "description": "Verify a customer's email address using the verification parameters from the email link.\nThis endpoint is designed for frontend applications to call after extracting parameters from the verification URL.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Email verified successfully. You can now log in.\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"John Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"email_verified_at\": \"2025-01-20T17:25:00+00:00\",\n      \"roles\": [\"customer\"]\n    },\n    \"already_verified\": false\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Invalid or expired verification link.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Verify email address (GET)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/email\/verify\/:id\/:hash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/email\/verify\/:id\/:hash",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "hash",
                                    "key": "hash",
                                    "value": "abc123...",
                                    "description": "The verification hash."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Verify a customer's email address via direct link access. This endpoint is used when clicking the verification link directly.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Email verified successfully. You can now log in.\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"John Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"email_verified_at\": \"2025-01-20T17:25:00+00:00\",\n      \"roles\": [\"customer\"]\n    },\n    \"already_verified\": false\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Resend email verification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/email\/resend-verification",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/email\/resend-verification"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"john.doe@example.com\"}"
                        },
                        "description": "Resend the email verification link to the customer's email address. This is a public endpoint that accepts an email address.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"If a customer account exists with that email, we have sent a verification email.\",\n  \"data\": {\n    \"message\": \"If a customer account exists with that email, we have sent a verification email.\",\n    \"frontend_url\": \"http:\/\/localhost:3000\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 400,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Email already verified.\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Validation failed\",\n  \"errors\": {\n    \"email\": [\"We could not find a user with that email address.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Logout customer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Revoke the current access token and log out the authenticated customer."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Logged out successfully\",\n  \"data\": []\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get customer profile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get the authenticated customer's profile information."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Profile retrieved successfully\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"John Doe\",\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"email_verified_at\": \"2025-01-20T17:25:00+00:00\",\n      \"roles\": [\"customer\"],\n      \"profile\": {\n        \"phone\": \"1234567890\",\n        \"phone_country_code\": {\n          \"id\": 1,\n          \"phone_code\": \"+1\"\n        },\n        \"address_line_1\": \"123 Main Street\",\n        \"address_line_2\": \"Apt 4B\",\n        \"landmark\": \"Near Central Park\",\n        \"country\": {\n          \"id\": 1,\n          \"name\": \"United States\"\n        },\n        \"state\": {\n          \"id\": 1,\n          \"name\": \"New York\"\n        },\n        \"city\": {\n          \"id\": 1,\n          \"name\": \"New York City\"\n        },\n        \"postal_code\": \"12345\",\n        \"profile_image\": \"http:\/\/example.com\/storage\/profiles\/image.jpg\"\n      }\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Change password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/change-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/change-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"current_password\":\"oldpassword123\",\"password\":\"newpassword123\",\"password_confirmation\":\"newpassword123\"}"
                        },
                        "description": "Change the authenticated customer's password. The customer must provide their current password for verification."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Password changed successfully\",\n  \"data\": {\n    \"message\": \"Your password has been changed successfully.\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Validation failed\",\n  \"errors\": {\n    \"current_password\": [\"The current password is incorrect.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update customer profile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/customer\/update-profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/customer\/update-profile"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "first_name",
                                    "value": "John",
                                    "type": "text",
                                    "description": "The customer's first name."
                                },
                                {
                                    "key": "last_name",
                                    "value": "Doe",
                                    "type": "text",
                                    "description": "The customer's last name."
                                },
                                {
                                    "key": "email",
                                    "value": "john.doe@example.com",
                                    "type": "text",
                                    "description": "The customer's email address. Must be unique."
                                },
                                {
                                    "key": "phone",
                                    "value": "1234567890",
                                    "type": "text",
                                    "description": "The customer's phone number."
                                },
                                {
                                    "key": "phone_country_code_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "The ID of the phone country code."
                                },
                                {
                                    "key": "address_line_1",
                                    "value": "123 Main Street",
                                    "type": "text",
                                    "description": "The customer's primary address line."
                                },
                                {
                                    "key": "address_line_2",
                                    "value": "Apt 4B",
                                    "type": "text",
                                    "description": "The customer's secondary address line."
                                },
                                {
                                    "key": "landmark",
                                    "value": "Near Central Park",
                                    "type": "text",
                                    "description": "A nearby landmark."
                                },
                                {
                                    "key": "country_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "The ID of the country."
                                },
                                {
                                    "key": "state_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "The ID of the state."
                                },
                                {
                                    "key": "city_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "The ID of the city."
                                },
                                {
                                    "key": "postal_code",
                                    "value": "12345",
                                    "type": "text",
                                    "description": "The postal or zip code."
                                },
                                {
                                    "key": "profile_image",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "Update the authenticated customer's profile information including personal details, contact information, address, and profile image."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Profile updated successfully\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"John Doe\",\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"john.doe@example.com\",\n      \"email_verified_at\": \"2025-01-20T17:25:00+00:00\",\n      \"roles\": [\"customer\"],\n      \"profile\": {\n        \"phone\": \"1234567890\",\n        \"phone_country_code\": {\n          \"id\": 1,\n          \"phone_code\": \"+1\"\n        },\n        \"address_line_1\": \"123 Main Street\",\n        \"address_line_2\": \"Apt 4B\",\n        \"landmark\": \"Near Central Park\",\n        \"country\": {\n          \"id\": 1,\n          \"name\": \"United States\"\n        },\n        \"state\": {\n          \"id\": 1,\n          \"name\": \"New York\"\n        },\n        \"city\": {\n          \"id\": 1,\n          \"name\": \"New York City\"\n        },\n        \"postal_code\": \"12345\",\n        \"profile_image\": \"http:\/\/example.com\/storage\/profiles\/image.jpg\"\n      }\n    }\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Validation failed\",\n  \"errors\": {\n    \"email\": [\"This email address is already registered.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin Authentication",
            "description": "\nAPIs for admin and staff authentication. Both admin and staff users can access the admin portal.",
            "item": [
                {
                    "name": "Get admin\/staff profile data",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/profile"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get the authenticated admin or staff user's detailed profile data including first name, last name, email, profile photo and extra data."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Admin profile retrieved successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"user_id\": 1,\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"email\": \"admin@ruhline.com\",\n    \"profile_photo\": \"http:\/\/example.com\/storage\/profiles\/photo.jpg\",\n    \"extra_data\": null,\n    \"created_at\": \"2026-01-20T17:47:05+00:00\",\n    \"updated_at\": \"2026-01-20T17:47:05+00:00\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Admin profile not found\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update profile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/profile"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "first_name",
                                    "value": "John",
                                    "type": "text",
                                    "description": "The admin\/staff first name."
                                },
                                {
                                    "key": "last_name",
                                    "value": "Doe",
                                    "type": "text",
                                    "description": "The admin\/staff last name."
                                },
                                {
                                    "key": "profile_photo",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "Update the authenticated admin or staff user's profile information including first name, last name, and profile photo."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Profile updated successfully\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"John Doe\",\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"admin@ruhline.com\",\n      \"email_verified_at\": null,\n      \"roles\": [\"admin\"],\n      \"profile\": {\n        \"profile_photo\": \"http:\/\/example.com\/storage\/profiles\/photo.jpg\"\n      }\n    }\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Validation failed\",\n  \"errors\": {\n    \"profile_photo\": [\"The profile photo must be an image.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Login admin or staff",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/admin\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/admin\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"admin@ruhline.com\",\"password\":\"password\"}"
                        },
                        "description": "Authenticate an admin or staff user and return an access token. Both admin and staff roles can use this endpoint.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Login successful\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"Admin User\",\n      \"first_name\": \"Admin\",\n      \"last_name\": \"User\",\n      \"email\": \"admin@ruhline.com\",\n      \"email_verified_at\": null,\n      \"roles\": [\"admin\"],\n      \"profile\": {\n        \"profile_photo\": \"http:\/\/example.com\/storage\/profiles\/photo.jpg\"\n      }\n    },\n    \"token\": \"1|xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"This account is not authorized to access the admin portal.\",\n  \"errors\": {\n    \"email\": [\"This account is not authorized to access the admin portal.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Logout admin\/staff",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/admin\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/admin\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Revoke the current access token and log out the authenticated admin or staff user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Logged out successfully\",\n  \"data\": []\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get admin\/staff profile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/admin\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/admin\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get the authenticated admin or staff user's profile information."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Profile retrieved successfully\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"Admin User\",\n      \"email\": \"admin@ruhline.com\",\n      \"email_verified_at\": null,\n      \"roles\": [\"admin\"]\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Change password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/admin\/change-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/admin\/change-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"current_password\":\"oldpassword123\",\"password\":\"newpassword123\",\"password_confirmation\":\"newpassword123\"}"
                        },
                        "description": "Change the authenticated admin or staff user's password. The user must provide their current password for verification."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Password changed successfully\",\n  \"data\": {\n    \"message\": \"Your password has been changed successfully.\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Validation failed\",\n  \"errors\": {\n    \"current_password\": [\"The current password is incorrect.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get admin\/staff profile data",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/admin\/profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/admin\/profile"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get the authenticated admin or staff user's detailed profile data including first name, last name, email, profile photo and extra data."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Admin profile retrieved successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"user_id\": 1,\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"email\": \"admin@ruhline.com\",\n    \"profile_photo\": \"http:\/\/example.com\/storage\/profiles\/photo.jpg\",\n    \"extra_data\": null,\n    \"created_at\": \"2026-01-20T17:47:05+00:00\",\n    \"updated_at\": \"2026-01-20T17:47:05+00:00\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Admin profile not found\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update profile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/admin\/profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/admin\/profile"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "first_name",
                                    "value": "John",
                                    "type": "text",
                                    "description": "The admin\/staff first name."
                                },
                                {
                                    "key": "last_name",
                                    "value": "Doe",
                                    "type": "text",
                                    "description": "The admin\/staff last name."
                                },
                                {
                                    "key": "profile_photo",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "Update the authenticated admin or staff user's profile information including first name, last name, and profile photo."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Profile updated successfully\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"John Doe\",\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"admin@ruhline.com\",\n      \"email_verified_at\": null,\n      \"roles\": [\"admin\"],\n      \"profile\": {\n        \"profile_photo\": \"http:\/\/example.com\/storage\/profiles\/photo.jpg\"\n      }\n    }\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Validation failed\",\n  \"errors\": {\n    \"profile_photo\": [\"The profile photo must be an image.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Coach Authentication",
            "description": "\nAPIs for coach authentication. Coaches can register, verify email, and log in.\nAdmin must verify a coach before they can log in (coaches created by admin are verified by default).",
            "item": [
                {
                    "name": "Register a new coach",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/register",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/register"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"coach@example.com\",\"password\":\"password123\",\"password_confirmation\":\"password123\"}"
                        },
                        "description": "Register a new coach account. After registration, a verification email is sent.\nThe coach must verify their email, and an admin must verify the coach, before they can log in.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Coach registered successfully. Please check your email to verify your account.\",\n  \"data\": {\n    \"user\": { \"id\": 1, \"name\": \"John Doe\", \"email\": \"coach@example.com\", \"email_verified_at\": null, \"roles\": [\"coach\"] },\n    \"message\": \"Registration successful. Please verify your email. An admin must approve your account before you can log in.\"\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Login coach",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/login",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/login"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"coach@ruhline.com\",\"password\":\"password\"}"
                        },
                        "description": "Authenticate a coach and return an access token. The coach must have verified their email\nand be verified by an admin before they can log in.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Login successful\",\n  \"data\": {\n    \"user\": { \"id\": 1, \"name\": \"Coach User\", \"email\": \"coach@ruhline.com\", \"roles\": [\"coach\"] },\n    \"token\": \"1|xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"This account is not authorized to access the coach portal.\",\n  \"errors\": { \"email\": [\"This account is not authorized to access the coach portal.\"] }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Forgot password (coach)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/forgot-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/forgot-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"john.doe@example.com\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reset password (coach)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/reset-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/reset-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"token\":\"abc123...\",\"email\":\"john.doe@example.com\",\"password\":\"newpassword123\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Verify coach email (POST)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/email\/verify",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/email\/verify"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"id\":1,\"hash\":\"abc123...\",\"expires\":1234567890,\"signature\":\"xyz789...\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Verify coach email (GET)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/email\/verify\/:id\/:hash",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/email\/verify\/:id\/:hash",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the verify."
                                },
                                {
                                    "id": "hash",
                                    "key": "hash",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 403,
                            "body": "{\n    \"message\": \"Invalid signature.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Resend coach email verification",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/email\/resend-verification",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/email\/resend-verification"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"email\":\"john.doe@example.com\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Logout coach",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/logout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/logout"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Revoke the current access token and log out the authenticated coach user."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Logged out successfully\",\n  \"data\": []\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get coach profile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/me",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/me"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get the authenticated coach user's profile information."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Profile retrieved successfully\",\n  \"data\": {\n    \"user\": {\n      \"id\": 1,\n      \"name\": \"Coach User\",\n      \"email\": \"coach@ruhline.com\",\n      \"email_verified_at\": null,\n      \"roles\": [\"coach\"]\n    }\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Change password",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/change-password",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/change-password"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"current_password\":\"oldpassword123\",\"password\":\"newpassword123\",\"password_confirmation\":\"newpassword123\"}"
                        },
                        "description": "Change the authenticated coach's password. The coach must provide their current password for verification."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Password changed successfully\",\n  \"data\": { \"message\": \"Your password has been changed successfully.\" }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"The given data was invalid.\",\n  \"errors\": { \"current_password\": [\"The current password is incorrect.\"] }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update coach profile",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/update-profile",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/update-profile"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "first_name",
                                    "value": "John",
                                    "type": "text",
                                    "description": "Optional. The coach's first name."
                                },
                                {
                                    "key": "last_name",
                                    "value": "Doe",
                                    "type": "text",
                                    "description": "Optional. The coach's last name."
                                },
                                {
                                    "key": "email",
                                    "value": "coach@example.com",
                                    "type": "text",
                                    "description": "Optional. The coach's email. Must be unique."
                                },
                                {
                                    "key": "phone",
                                    "value": "1234567890",
                                    "type": "text",
                                    "description": "Optional. Phone number."
                                },
                                {
                                    "key": "phone_country_code_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Optional. ID of phone country code."
                                },
                                {
                                    "key": "coach_type",
                                    "value": "Mentor",
                                    "type": "text",
                                    "description": "Optional. One of: Mentor, Yoga Trainer."
                                },
                                {
                                    "key": "address_line_1",
                                    "value": "123 Main St",
                                    "type": "text",
                                    "description": "Optional. Primary address line."
                                },
                                {
                                    "key": "address_line_2",
                                    "value": "Apt 4B",
                                    "type": "text",
                                    "description": "Optional. Secondary address line."
                                },
                                {
                                    "key": "landmark",
                                    "value": "Near Central Park",
                                    "type": "text",
                                    "description": "Optional. Landmark."
                                },
                                {
                                    "key": "country_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Optional. Country ID."
                                },
                                {
                                    "key": "state_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Optional. State ID."
                                },
                                {
                                    "key": "city_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Optional. City ID."
                                },
                                {
                                    "key": "postal_code",
                                    "value": "12345",
                                    "type": "text",
                                    "description": "Optional. Postal code."
                                },
                                {
                                    "key": "profile_image",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "Update the authenticated coach's profile. All fields are optional; only provided fields are updated.\nSupports: first_name, last_name, email, phone, phone_country_code_id, coach_type, address fields, profile_image."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Profile updated successfully\",\n  \"data\": { \"user\": { \"id\": 1, \"name\": \"John Doe\", \"email\": \"coach@example.com\", \"profile\": { ... } } }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{ \"success\": false, \"message\": \"Unauthenticated\" }",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{ \"success\": false, \"message\": \"Validation failed\", \"errors\": { ... } }",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get coach payment details.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/payment-details",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/payment-details"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": ""
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update coach payment details.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/auth\/coach\/payment-details",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/auth\/coach\/payment-details"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"account_number\":\"b\",\"country\":\"n\",\"bank_name\":\"g\",\"account_holder_name\":\"z\",\"swiss_code\":\"m\"}"
                        },
                        "description": ""
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Checkout (Customer)",
            "description": "\nAPIs for checkout preview and Stripe Checkout Session payment.\n\nBase path: \/api\/v1\/checkout",
            "item": [
                {
                    "name": "POST api\/v1\/checkout\/webhook\/stripe",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/checkout\/webhook\/stripe",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/checkout\/webhook\/stripe"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/checkout\/preview",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/checkout\/preview",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/checkout\/preview"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"program_id\":16,\"coach_id\":16,\"slot_start_at\":\"2026-04-25T17:16:45\",\"coupon_code\":\"n\",\"timezone\":\"Antarctica\\\/Rothera\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/checkout\/create-session",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/checkout\/create-session",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/checkout\/create-session"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"program_id\":16,\"coach_id\":16,\"slot_start_at\":\"2026-04-25T17:16:45\",\"coupon_code\":\"n\",\"timezone\":\"Antarctica\\\/Rothera\",\"success_url\":\"http:\\\/\\\/www.okuneva.com\\\/fugiat-sunt-nihil-accusantium-harum-mollitia.html\",\"cancel_url\":\"http:\\\/\\\/www.considine.com\\\/provident-perspiciatis-quo-omnis-nostrum-aut-adipisci-quidem\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/checkout\/orders",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/checkout\/orders",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/checkout\/orders"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"architecto\",\"payment_status\":\"architecto\",\"per_page\":22,\"page\":67}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/checkout\/order\/{orderId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/checkout\/order\/:orderId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/checkout\/order\/:orderId",
                            "variable": [
                                {
                                    "id": "orderId",
                                    "key": "orderId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/checkout\/sessions\/upcoming",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/checkout\/sessions\/upcoming",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/checkout\/sessions\/upcoming"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Customer - Enrollments",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/customer\/enrollments",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"occurrence_type\":\"architecto\",\"enrollment_status\":\"architecto\",\"per_page\":22,\"page\":67}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/sessions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/sessions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/sessions",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"session_ui_phase\":\"architecto\",\"per_page\":22,\"page\":67}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/sessions\/{sessionId}\/available-slots",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/sessions\/:sessionId\/available-slots",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/sessions\/:sessionId\/available-slots",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "sessionId",
                                    "key": "sessionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"date\":\"2026-04-25\",\"timezone\":\"Asia\\\/Yekaterinburg\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/customer\/enrollments\/{enrollmentId}\/sessions\/{sessionId}\/schedule",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/sessions\/:sessionId\/schedule",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/sessions\/:sessionId\/schedule",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "sessionId",
                                    "key": "sessionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slot_start_at\":\"2026-04-25T17:16:47\",\"timezone\":\"Asia\\\/Yekaterinburg\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/customer\/enrollments\/{enrollmentId}\/sessions\/{sessionId}\/reschedule",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/sessions\/:sessionId\/reschedule",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/sessions\/:sessionId\/reschedule",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "sessionId",
                                    "key": "sessionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"slot_start_at\":\"2026-04-25T17:16:47\",\"timezone\":\"Asia\\\/Yekaterinburg\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/customer\/enrollments\/{enrollmentId}\/sessions\/{sessionId}\/cancel",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/sessions\/:sessionId\/cancel",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/sessions\/:sessionId\/cancel",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "sessionId",
                                    "key": "sessionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/customer\/enrollments\/{enrollmentId}\/sessions\/{sessionId}\/video-token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/sessions\/:sessionId\/video-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/sessions\/:sessionId\/video-token",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "sessionId",
                                    "key": "sessionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Customer - Disputes",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/dispute\/form-options",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dispute\/form-options",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dispute\/form-options"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/dispute",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dispute",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dispute"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/dispute",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dispute",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dispute"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "subject",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `subject`. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "category",
                                    "value": "issue_with_coach",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `category`."
                                },
                                {
                                    "key": "description",
                                    "value": "Et animi quos velit et fugiat.",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `description`. Must not be greater than 5000 characters."
                                },
                                {
                                    "key": "program_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `program_id`. The <code>id<\/code> of an existing record in the programs table."
                                },
                                {
                                    "key": "coach_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `coach_id`. The <code>id<\/code> of an existing record in the coaches table."
                                },
                                {
                                    "key": "checkout_order_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `checkout_order_id`. The <code>id<\/code> of an existing record in the checkout_orders table."
                                },
                                {
                                    "key": "attachments[]",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/dispute\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dispute\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dispute\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the dispute."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/dispute\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dispute\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dispute\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the dispute."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "subject",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `subject`. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "category",
                                    "value": "issue_with_program",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `category`."
                                },
                                {
                                    "key": "description",
                                    "value": "Et animi quos velit et fugiat.",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `description`. Must not be greater than 5000 characters."
                                },
                                {
                                    "key": "program_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `program_id`. The <code>id<\/code> of an existing record in the programs table."
                                },
                                {
                                    "key": "coach_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `coach_id`. The <code>id<\/code> of an existing record in the coaches table."
                                },
                                {
                                    "key": "checkout_order_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `checkout_order_id`. The <code>id<\/code> of an existing record in the checkout_orders table."
                                },
                                {
                                    "key": "attachments[]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/dispute\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dispute\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dispute\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the dispute."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "subject",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `subject`. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "category",
                                    "value": "issue_with_program",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `category`."
                                },
                                {
                                    "key": "description",
                                    "value": "Et animi quos velit et fugiat.",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `description`. Must not be greater than 5000 characters."
                                },
                                {
                                    "key": "program_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `program_id`. The <code>id<\/code> of an existing record in the programs table."
                                },
                                {
                                    "key": "coach_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `coach_id`. The <code>id<\/code> of an existing record in the coaches table."
                                },
                                {
                                    "key": "checkout_order_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `checkout_order_id`. The <code>id<\/code> of an existing record in the checkout_orders table."
                                },
                                {
                                    "key": "attachments[]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PATCH",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/dispute\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/dispute\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/dispute\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the dispute."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Customer - Program Reviews",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/customer\/reviews",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/reviews",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/reviews"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"per_page\":1,\"page\":22}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/customer\/reviews",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/reviews",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/reviews"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"program_enrollment_id\":16,\"rating\":2,\"body\":\"g\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/customer\/reviews\/{reviewId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/reviews\/:reviewId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/reviews\/:reviewId",
                            "variable": [
                                {
                                    "id": "reviewId",
                                    "key": "reviewId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"rating\":1,\"body\":\"n\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/customer\/reviews\/{reviewId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/reviews\/:reviewId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/reviews\/:reviewId",
                            "variable": [
                                {
                                    "id": "reviewId",
                                    "key": "reviewId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Programs (Guest \/ no auth)",
            "description": "\nUnauthenticated catalog: list programs and program detail. Only programs whose category is active are returned.\nDoes not include program structure or modules.\n\nBase path: \/api\/v1\/programs",
            "item": [
                {
                    "name": "List programs (optional filter by active category).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/programs",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "program_category_id",
                                    "value": "2",
                                    "description": "optional Only programs in this category (must be active).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/programs?page=1&per_page=15&program_category_id=2"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Program category not found or inactive.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List programs in a specific active category.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/programs\/category\/:categoryId",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/programs\/category\/:categoryId?page=1&per_page=15",
                            "variable": [
                                {
                                    "id": "categoryId",
                                    "key": "categoryId",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Program category not found or inactive.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List facilitators (coaches) assigned to one visible program.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/programs\/:id\/facilitators",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "coach_type",
                                    "value": "Mentor",
                                    "description": "optional Filter: Mentor or Yoga Trainer.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/programs\/:id\/facilitators?page=1&per_page=15&coach_type=Mentor",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Program not found or unavailable.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List available slots for one facilitator on one date.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/programs\/:id\/facilitators\/:coachId\/slots",
                            "query": [
                                {
                                    "key": "date",
                                    "value": "2026-04-10",
                                    "description": "Date in YYYY-MM-DD.",
                                    "disabled": false
                                },
                                {
                                    "key": "timezone",
                                    "value": "Asia%2FKolkata",
                                    "description": "optional IANA timezone name. Defaults to UTC.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/programs\/:id\/facilitators\/:coachId\/slots?date=2026-04-10&timezone=Asia%2FKolkata",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "Program ID."
                                },
                                {
                                    "id": "coachId",
                                    "key": "coachId",
                                    "value": "3",
                                    "description": "Coach ID assigned to this program."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"date\":\"2026-04-25\",\"timezone\":\"Asia\\\/Yekaterinburg\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Program not found or unavailable.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Program detail (marketing content only; no structure\/modules).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/programs\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/programs\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Program not found or unavailable.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Coaches (Guest \/ no auth)",
            "description": "\nUnauthenticated directory of admin-verified coaches only.\n\nBase path: \/api\/v1\/coaches",
            "item": [
                {
                    "name": "List coaches visible on the public directory.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coaches",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "",
                                    "disabled": false
                                },
                                {
                                    "key": "coach_type",
                                    "value": "Mentor",
                                    "description": "optional Filter: `Mentor` or `Yoga Trainer`.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/coaches?page=1&per_page=15&coach_type=Mentor"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Coaches retrieved successfully\",\"data\":{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/coaches?page=1\",\"last\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/coaches?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/coaches?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/coaches\",\"per_page\":15,\"to\":null,\"total\":0}}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Coach - Programs",
            "description": "\nAPIs for coaches to view programs they are assigned to.\n\nRoutes are prefixed with: \/api\/v1\/program",
            "item": [
                {
                    "name": "List programs assigned to the authenticated coach.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/program?page=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get details of one program assigned to the authenticated coach.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "1",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Coach - Program Availability",
            "description": "\nAPIs for coaches to manage their own availability and time-off per assigned program.\n\nRoutes are prefixed with: \/api\/v1\/program",
            "item": [
                {
                    "name": "Get coach availability and time-off for an assigned program.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/availability",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/availability",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "1",
                                    "description": "The ID of the assigned program."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Replace coach availability rules for one assigned program.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/availability",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/availability",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "1",
                                    "description": "The ID of the assigned program."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"rules\":[{\"day_of_week\":4,\"start_time\":\"17:16\",\"end_time\":\"17:16\",\"effective_from\":\"2026-04-25\",\"effective_to\":\"2052-05-18\",\"is_active\":true}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Replace coach availability rules for one assigned program.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/availability",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/availability",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "1",
                                    "description": "The ID of the assigned program."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"rules\":[{\"day_of_week\":4,\"start_time\":\"17:16\",\"end_time\":\"17:16\",\"effective_from\":\"2026-04-25\",\"effective_to\":\"2052-05-18\",\"is_active\":false}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Add a time-off block for one assigned program.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/time-off",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/time-off",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "1",
                                    "description": "The ID of the assigned program."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"start_at\":\"2026-04-25T17:16:46\",\"end_at\":\"2052-05-18\",\"reason\":\"n\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete one time-off block for an assigned program.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/time-off\/:timeOffId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/time-off\/:timeOffId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "1",
                                    "description": "The ID of the assigned program."
                                },
                                {
                                    "id": "timeOffId",
                                    "key": "timeOffId",
                                    "value": "5",
                                    "description": "The ID of the time-off block."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Coach - Program Structure",
            "description": "",
            "item": [
                {
                    "name": "List program structure for a coach, including flags\nabout whether each module can be edited and whether a\ncoach-specific copy exists.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/program\/{programId}\/structure\/{structureId}\/quote",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/quote",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/quote",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Goal Settings module has no extra configuration; coaches get metadata only.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/goal-settings-module",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/goal-settings-module",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Habit Tracker module has no extra configuration; coaches get metadata only.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/habit-tracker-module",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/habit-tracker-module",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/program\/{programId}\/structure\/{structureId}\/card-game\/question-sets",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/card-game\/question-sets",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/card-game\/question-sets",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/program\/{programId}\/structure\/{structureId}\/card-game\/question-sets\/{setId}\/questions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/program\/{programId}\/structure\/{structureId}\/card-game\/cards",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/card-game\/cards",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/card-game\/cards",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/program\/{programId}\/structure\/{structureId}\/intermediate-values",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/intermediate-values",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/intermediate-values",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/program\/{programId}\/structure\/{structureId}\/intermediate-eight-most-common-mistakes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/intermediate-eight-most-common-mistakes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/intermediate-eight-most-common-mistakes",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/program\/{programId}\/structure\/{structureId}\/intermediate-goal-settings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/intermediate-goal-settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/intermediate-goal-settings",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/program\/{programId}\/structure\/{structureId}\/intermediate-questions-goal-why",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/intermediate-questions-goal-why",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/intermediate-questions-goal-why",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/program\/{programId}\/structure\/{structureId}\/intermediate-y-method",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/intermediate-y-method",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/intermediate-y-method",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "List words for a Find your Motivation module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/words",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/words",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a coach-specific word (clones coach copy on first write).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/words",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/words",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"word\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach-specific word.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/words\/:wordId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/words\/:wordId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "wordId",
                                    "key": "wordId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"word\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach-specific word.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/words\/:wordId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/words\/:wordId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "wordId",
                                    "key": "wordId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"word\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a coach-specific word.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/words\/:wordId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/words\/:wordId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "wordId",
                                    "key": "wordId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach-specific words.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/words\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/words\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach-specific words.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/words\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/words\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List Values questions for a coach (program defaults or\ncoach copy, depending on whether a copy exists).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a coach-specific Values question (clones on first write).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach-specific Values question.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach-specific Values question.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a coach-specific Values question.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach-specific Values questions.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach-specific Values questions.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/values\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List Who am I questions for a coach.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a coach-specific Who am I question.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach-specific Who am I question.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach-specific Who am I question.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a coach-specific Who am I question.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach-specific Who am I questions.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach-specific Who am I questions.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/who-am-i\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List life elements for a coach Wheel of Life module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a life element to a coach-specific Wheel of Life module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach-specific life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach-specific life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a coach-specific life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach-specific life elements.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach-specific life elements.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List questions for a coach Wheel of Life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a question to a coach-specific Wheel of Life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach-specific Wheel of Life question.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach-specific Wheel of Life question.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a coach-specific Wheel of Life question.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach-specific Wheel of Life questions.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach-specific Wheel of Life questions.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List upload documents for a coach.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Upload one or more documents to an Upload Documents module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "original_name",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Must not be greater than 255 characters."
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "files[]",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "Single file: multipart field \"file\" (optional \"original_name\").\nMultiple files: multipart field \"files[]\" (array of files).",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach document's original name.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents\/:documentId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents\/:documentId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "documentId",
                                    "key": "documentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"original_name\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coach document's original name.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents\/:documentId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents\/:documentId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "documentId",
                                    "key": "documentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"original_name\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a coach document (and remove its file from storage).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents\/:documentId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents\/:documentId",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "documentId",
                                    "key": "documentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach documents.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder coach documents.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/:programId\/structure\/:structureId\/upload-documents\/reorder",
                            "variable": [
                                {
                                    "id": "programId",
                                    "key": "programId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Coach - Disputes",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/coach\/dispute\/form-options",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coach\/dispute\/form-options",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coach\/dispute\/form-options"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/coach\/dispute",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coach\/dispute",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coach\/dispute"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/coach\/dispute",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coach\/dispute",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coach\/dispute"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "subject",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `subject`. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "category",
                                    "value": "issue_with_payments",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `category`."
                                },
                                {
                                    "key": "description",
                                    "value": "Et animi quos velit et fugiat.",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `description`. Must not be greater than 5000 characters."
                                },
                                {
                                    "key": "program_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `program_id`. This field is required when <code>category<\/code> is <code>issue_with_program<\/code>. The <code>id<\/code> of an existing record in the programs table."
                                },
                                {
                                    "key": "payout_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `payout_id`. This field is required when <code>category<\/code> is <code>issue_with_payments<\/code>. The <code>id<\/code> of an existing record in the payouts table."
                                },
                                {
                                    "key": "attachments[]",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/coach\/dispute\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coach\/dispute\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coach\/dispute\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the dispute."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/coach\/dispute\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coach\/dispute\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coach\/dispute\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the dispute."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "subject",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `subject`. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "category",
                                    "value": "issue_with_payments",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `category`."
                                },
                                {
                                    "key": "description",
                                    "value": "Et animi quos velit et fugiat.",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `description`. Must not be greater than 5000 characters."
                                },
                                {
                                    "key": "program_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `program_id`. This field is required when <code>category<\/code> is <code>issue_with_program<\/code>. The <code>id<\/code> of an existing record in the programs table."
                                },
                                {
                                    "key": "payout_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `payout_id`. This field is required when <code>category<\/code> is <code>issue_with_payments<\/code>. The <code>id<\/code> of an existing record in the payouts table."
                                },
                                {
                                    "key": "attachments[]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/coach\/dispute\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coach\/dispute\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coach\/dispute\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the dispute."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "subject",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `subject`. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "category",
                                    "value": "issue_with_payments",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `category`."
                                },
                                {
                                    "key": "description",
                                    "value": "Et animi quos velit et fugiat.",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `description`. Must not be greater than 5000 characters."
                                },
                                {
                                    "key": "program_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `program_id`. This field is required when <code>category<\/code> is <code>issue_with_program<\/code>. The <code>id<\/code> of an existing record in the programs table."
                                },
                                {
                                    "key": "payout_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `payout_id`. This field is required when <code>category<\/code> is <code>issue_with_payments<\/code>. The <code>id<\/code> of an existing record in the payouts table."
                                },
                                {
                                    "key": "attachments[]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PATCH",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/coach\/dispute\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coach\/dispute\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coach\/dispute\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the dispute."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Coach - Payouts",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/payout",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/payout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/payout"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - About Page (CMS)",
            "description": "\nAPIs for managing the About page content (Section 01, Mission\/Vision\/Values, Founder).\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/about-page",
            "item": [
                {
                    "name": "Get about page data (admin)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/about-page",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/about-page"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the full about page content for editing.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update about page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/about-page",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/about-page"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"section_one\":[\"architecto\"],\"mission_vision_values\":[\"architecto\"],\"founder\":[\"architecto\"]}"
                        },
                        "description": "Update section 01, mission\/vision\/values, and founder. All sections are optional.\nUse multipart\/form-data for image uploads.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update about page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/about-page",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/about-page"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"section_one\":[\"architecto\"],\"mission_vision_values\":[\"architecto\"],\"founder\":[\"architecto\"]}"
                        },
                        "description": "Update section 01, mission\/vision\/values, and founder. All sections are optional.\nUse multipart\/form-data for image uploads.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "About Page (Public)",
            "description": "\nPublic API for retrieving the About page content for the frontend.\nNo authentication required.\n\nRoutes are prefixed with: \/api\/v1\/about-page",
            "item": [
                {
                    "name": "Get about page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/about-page",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/about-page"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns Section 01 (About Us), Section 02 (Mission, Vision, Values), and Section 03 (Our Founder).",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"About page retrieved successfully\",\"data\":{\"section_01\":{\"headline\":null,\"about_us_image\":null,\"secondary_headline\":null,\"description\":null},\"section_02\":{\"mission_vision_values\":[{\"id\":1,\"type\":\"mission\",\"title\":\"Mission\",\"description\":null,\"icon\":null},{\"id\":2,\"type\":\"vision\",\"title\":\"Vision\",\"description\":null,\"icon\":null},{\"id\":3,\"type\":\"values\",\"title\":\"Values\",\"description\":null,\"icon\":null}]},\"section_03\":{\"headline\":null,\"secondary_headline\":null,\"image\":null,\"description\":null},\"updated_at\":\"2026-04-25T17:05:01+00:00\"}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Article Category Management",
            "description": "\nAPIs for managing article categories. Only accessible by admin users.\nAdmin sends is_active as text \"true\" or \"false\".\n\nAll routes are prefixed with: \/api\/v1\/admin\/article-category",
            "item": [
                {
                    "name": "Get list of article categories (with articles count)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article-category",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article-category?page=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new article category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article-category",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article-category"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Fitness Tips\",\"is_active\":\"true\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific article category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the article category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update an article category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the article category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"architecto\",\"is_active\":\"architecto\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update an article category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the article category."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"architecto\",\"is_active\":\"architecto\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete an article category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the article category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Article Management",
            "description": "\nAPIs for managing articles (with thumbnail, category, description, share options, sections).\nAdmin sends share_facebook, share_twitter, share_linkedin as text \"true\" or \"false\".\nSection image_position: left, right, or center.\n\nAll routes are prefixed with: \/api\/v1\/admin\/article",
            "item": [
                {
                    "name": "Get list of articles",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "article_category_id",
                                    "value": "1",
                                    "description": "optional Filter by category.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article?page=1&per_page=15&article_category_id=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new article",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "article_category_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Article category ID."
                                },
                                {
                                    "key": "name",
                                    "value": "How to Stay Fit",
                                    "type": "text",
                                    "description": "Article name."
                                },
                                {
                                    "key": "description",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": "optional Article description."
                                },
                                {
                                    "key": "share_facebook",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\". Default true."
                                },
                                {
                                    "key": "share_twitter",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\". Default true."
                                },
                                {
                                    "key": "share_linkedin",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\". Default true."
                                },
                                {
                                    "key": "sections[0]",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "thumbnail_image",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific article",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the article."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update an article",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the article."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "article_category_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "optional Article category ID."
                                },
                                {
                                    "key": "name",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional Article name."
                                },
                                {
                                    "key": "description",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": "optional Article description."
                                },
                                {
                                    "key": "share_facebook",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\"."
                                },
                                {
                                    "key": "share_twitter",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\"."
                                },
                                {
                                    "key": "share_linkedin",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\"."
                                },
                                {
                                    "key": "sections[0]",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "thumbnail_image",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update an article",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the article."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "article_category_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "optional Article category ID."
                                },
                                {
                                    "key": "name",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional Article name."
                                },
                                {
                                    "key": "description",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": "optional Article description."
                                },
                                {
                                    "key": "share_facebook",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\"."
                                },
                                {
                                    "key": "share_twitter",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\"."
                                },
                                {
                                    "key": "share_linkedin",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\"."
                                },
                                {
                                    "key": "sections[0]",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "thumbnail_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update an article",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the article."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "article_category_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "optional Article category ID."
                                },
                                {
                                    "key": "name",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional Article name."
                                },
                                {
                                    "key": "description",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": "optional Article description."
                                },
                                {
                                    "key": "share_facebook",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\"."
                                },
                                {
                                    "key": "share_twitter",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\"."
                                },
                                {
                                    "key": "share_linkedin",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": "optional \"true\" or \"false\"."
                                },
                                {
                                    "key": "sections[0]",
                                    "value": "architecto",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "thumbnail_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PATCH",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete an article",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/article\/article\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/article\/article\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the article."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Article Categories (Public)",
            "description": "\nPublic APIs for listing article categories. No authentication required.\nReturns only active categories with articles count.\n\nAll routes are prefixed with: \/api\/v1\/article-category",
            "item": [
                {
                    "name": "List active article categories (with articles count)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/article\/article-category",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/article\/article-category?page=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Article categories retrieved successfully\",\"data\":{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/article\\\/article-category?page=1\",\"last\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/article\\\/article-category?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/article\\\/article-category?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/article\\\/article-category\",\"per_page\":15,\"to\":null,\"total\":0}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get a single active article category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/article\/article-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/article\/article-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the article category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Article category not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Articles (Public)",
            "description": "\nPublic APIs for listing and viewing articles. No authentication required.\nAll routes are prefixed with: \/api\/v1\/article\/article (list, single by id).",
            "item": [
                {
                    "name": "List articles",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/article\/article",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "article_category_id",
                                    "value": "1",
                                    "description": "optional Filter by category.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/article\/article?page=1&per_page=15&article_category_id=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Articles retrieved successfully\",\"data\":{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/article\\\/article?page=1\",\"last\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/article\\\/article?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/article\\\/article?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/article\\\/article\",\"per_page\":15,\"to\":null,\"total\":0}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get a single article",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/article\/article\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/article\/article\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the article."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Article not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Card Management",
            "description": "\nAPIs for managing cards within card categories. Only accessible by admin users.\nEach category has up to 52 cards. Admin provides card name and description when creating.\n\nAll routes are prefixed with: \/api\/v1\/admin\/card-category\/cards",
            "item": [
                {
                    "name": "Get list of cards",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category\/cards",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "card_category_id",
                                    "value": "1",
                                    "description": "optional Filter by card category.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category\/cards?page=1&per_page=15&card_category_id=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new card",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category\/cards",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category\/cards"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"card_category_id\":1,\"name\":\"The Fool\",\"description\":\"Eius et animi quos velit et.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific card",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category\/cards\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category\/cards\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the card."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a card",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category\/cards\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category\/cards\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the card."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"card_category_id\":16,\"name\":\"architecto\",\"description\":\"Eius et animi quos velit et.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a card",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category\/cards\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category\/cards\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the card."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"card_category_id\":16,\"name\":\"architecto\",\"description\":\"Eius et animi quos velit et.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a card",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category\/cards\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category\/cards\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the card."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Card Category Management",
            "description": "\nAPIs for managing card categories. Only accessible by admin users.\nAdmin provides only the card category name when creating.\n\nAll routes are prefixed with: \/api\/v1\/admin\/card-category",
            "item": [
                {
                    "name": "Get list of card categories (with cards count)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category?page=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new card category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Tarot\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific card category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the card category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a card category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the card category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"architecto\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a card category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the card category."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"architecto\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a card category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/card-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/card-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the card category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Checkout Orders",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/admin\/checkout\/orders",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/checkout\/orders",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/checkout\/orders"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/admin\/checkout\/orders\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/checkout\/orders\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/checkout\/orders\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the order."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Coach Management",
            "description": "\nAPIs for managing coaches. Only accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/coach\/admin",
            "item": [
                {
                    "name": "Get list of all coaches",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coach",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coach?page=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a paginated list of all coaches with their profiles.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Coaches retrieved successfully\",\n  \"data\": {\n    \"current_page\": 1,\n    \"data\": [\n      {\n        \"id\": 1,\n        \"user\": {\n          \"id\": 1,\n          \"first_name\": \"John\",\n          \"last_name\": \"Doe\",\n          \"email\": \"john@example.com\"\n        },\n        \"profile\": {\n          \"phone\": \"1234567890\",\n          \"gender\": \"male\",\n          \"coach_type\": \"Mentor\",\n          \"profile_image\": \"http:\/\/example.com\/storage\/coaches\/profiles\/image.jpg\"\n        }\n      }\n    ],\n    \"total\": 10\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new coach",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coach",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coach"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "first_name",
                                    "value": "John",
                                    "type": "text",
                                    "description": "The coach's first name."
                                },
                                {
                                    "key": "last_name",
                                    "value": "Doe",
                                    "type": "text",
                                    "description": "The coach's last name."
                                },
                                {
                                    "key": "email",
                                    "value": "john@example.com",
                                    "type": "text",
                                    "description": "The coach's email address."
                                },
                                {
                                    "key": "phone",
                                    "value": "1234567890",
                                    "type": "text",
                                    "description": "The coach's phone number."
                                },
                                {
                                    "key": "phone_country_code_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "The phone country code ID."
                                },
                                {
                                    "key": "gender",
                                    "value": "male",
                                    "type": "text",
                                    "description": "The coach's gender (male, female, other)."
                                },
                                {
                                    "key": "coach_type",
                                    "value": "Mentor",
                                    "type": "text",
                                    "description": "The coach type (Mentor, Yoga Trainer)."
                                },
                                {
                                    "key": "password",
                                    "value": "password123",
                                    "type": "text",
                                    "description": "The coach's password."
                                },
                                {
                                    "key": "notes",
                                    "value": "Experienced mentor with 10 years of experience.",
                                    "type": "text",
                                    "description": "Optional notes about the coach."
                                },
                                {
                                    "key": "password_confirmation",
                                    "value": "password123",
                                    "type": "text",
                                    "description": "Password confirmation."
                                },
                                {
                                    "key": "profile_image",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "Create a new coach account with profile information. An email will be sent to the coach with their login credentials.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Coach created successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"user\": {\n      \"id\": 1,\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"john@example.com\"\n    },\n    \"profile\": {\n      \"phone\": \"1234567890\",\n      \"gender\": \"male\",\n      \"coach_type\": \"Mentor\",\n      \"profile_image\": \"http:\/\/example.com\/storage\/coaches\/profiles\/image.jpg\"\n    }\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Validation error\",\n  \"errors\": {\n    \"email\": [\"The email has already been taken.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get a specific coach",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coach\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coach\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the coach."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve detailed information about a specific coach.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Coach retrieved successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"user\": {\n      \"id\": 1,\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"john@example.com\"\n    },\n    \"profile\": {\n      \"phone\": \"1234567890\",\n      \"gender\": \"male\",\n      \"coach_type\": \"Mentor\",\n      \"profile_image\": \"http:\/\/example.com\/storage\/coaches\/profiles\/image.jpg\"\n    }\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Coach not found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a coach",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coach\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coach\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the coach."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "first_name",
                                    "value": "John",
                                    "type": "text",
                                    "description": "optional The coach's first name."
                                },
                                {
                                    "key": "last_name",
                                    "value": "Doe",
                                    "type": "text",
                                    "description": "optional The coach's last name."
                                },
                                {
                                    "key": "email",
                                    "value": "john@example.com",
                                    "type": "text",
                                    "description": "optional The coach's email address."
                                },
                                {
                                    "key": "phone",
                                    "value": "1234567890",
                                    "type": "text",
                                    "description": "optional The coach's phone number."
                                },
                                {
                                    "key": "phone_country_code_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "optional The phone country code ID."
                                },
                                {
                                    "key": "gender",
                                    "value": "male",
                                    "type": "text",
                                    "description": "optional The coach's gender (male, female, other)."
                                },
                                {
                                    "key": "coach_type",
                                    "value": "Mentor",
                                    "type": "text",
                                    "description": "optional The coach type (Mentor, Yoga Trainer)."
                                },
                                {
                                    "key": "notes",
                                    "value": "Experienced mentor with 10 years of experience.",
                                    "type": "text",
                                    "description": "Optional notes about the coach."
                                },
                                {
                                    "key": "profile_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "Update coach information and profile details.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Coach updated successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"user\": {\n      \"id\": 1,\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"john@example.com\"\n    },\n    \"profile\": {\n      \"phone\": \"1234567890\",\n      \"gender\": \"male\",\n      \"coach_type\": \"Mentor\"\n    }\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Coach not found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a coach",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coach\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coach\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the coach."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "first_name",
                                    "value": "John",
                                    "type": "text",
                                    "description": "optional The coach's first name."
                                },
                                {
                                    "key": "last_name",
                                    "value": "Doe",
                                    "type": "text",
                                    "description": "optional The coach's last name."
                                },
                                {
                                    "key": "email",
                                    "value": "john@example.com",
                                    "type": "text",
                                    "description": "optional The coach's email address."
                                },
                                {
                                    "key": "phone",
                                    "value": "1234567890",
                                    "type": "text",
                                    "description": "optional The coach's phone number."
                                },
                                {
                                    "key": "phone_country_code_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "optional The phone country code ID."
                                },
                                {
                                    "key": "gender",
                                    "value": "male",
                                    "type": "text",
                                    "description": "optional The coach's gender (male, female, other)."
                                },
                                {
                                    "key": "coach_type",
                                    "value": "Mentor",
                                    "type": "text",
                                    "description": "optional The coach type (Mentor, Yoga Trainer)."
                                },
                                {
                                    "key": "notes",
                                    "value": "Experienced mentor with 10 years of experience.",
                                    "type": "text",
                                    "description": "Optional notes about the coach."
                                },
                                {
                                    "key": "profile_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PATCH",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "Update coach information and profile details.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Coach updated successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"user\": {\n      \"id\": 1,\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"john@example.com\"\n    },\n    \"profile\": {\n      \"phone\": \"1234567890\",\n      \"gender\": \"male\",\n      \"coach_type\": \"Mentor\"\n    }\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Coach not found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Verify a coach (admin approval)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coach\/:id\/verify",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coach\/:id\/verify",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the coach."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Mark a coach as admin-verified so they can log into the coach portal.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Coach verified successfully. They can now log in.\",\n  \"data\": []\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Coach not found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a coach",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coach\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coach\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the coach."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete a coach account and all associated data. This will also delete the user account.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Coach deleted successfully\",\n  \"data\": []\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Coach not found.\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Global Commission Rate (Coaches)",
            "description": "\nAPIs for managing the global commission rate applied to coaches.\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/coach",
            "item": [
                {
                    "name": "Get global commission rate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coach\/global-commission-rate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coach\/global-commission-rate"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the current global commission rate (percentage) for coaches.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Global commission rate retrieved successfully\",\n  \"data\": {\n    \"global_commission_rate\": 10.5\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update global commission rate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coach\/global-commission-rate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coach\/global-commission-rate"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"global_commission_rate\":10.5}"
                        },
                        "description": "Update the global commission rate (percentage) for all coaches.\nValue must be between 0 and 100.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Global commission rate updated successfully\",\n  \"data\": {\n    \"global_commission_rate\": 10.5\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"success\":false,\"message\":\"Validation failed\",\"errors\":{...}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update global commission rate",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coach\/global-commission-rate",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coach\/global-commission-rate"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"global_commission_rate\":10.5}"
                        },
                        "description": "Update the global commission rate (percentage) for all coaches.\nValue must be between 0 and 100.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Global commission rate updated successfully\",\n  \"data\": {\n    \"global_commission_rate\": 10.5\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"success\":false,\"message\":\"Validation failed\",\"errors\":{...}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Contact Form Management",
            "description": "\nAPIs for managing contact form submissions. Only accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/contact",
            "item": [
                {
                    "name": "Get list of all contact submissions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/contact",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/contact?page=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a paginated list of all contact form submissions.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Contact submissions retrieved successfully\",\n  \"data\": {\n    \"current_page\": 1,\n    \"data\": [\n      {\n        \"id\": 1,\n        \"name\": \"John Doe\",\n        \"email\": \"john@example.com\",\n        \"phone\": \"1234567890\",\n        \"phone_country_code\": {\n          \"id\": 1,\n          \"phone_code\": \"+1\",\n          \"intl_dialing_prefix\": \"1\"\n        },\n        \"message\": \"I would like to know more about your services.\",\n        \"created_at\": \"2026-01-28T06:05:31+00:00\"\n      }\n    ],\n    \"total\": 10\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get a specific contact submission",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/contact\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/contact\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the contact submission."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve detailed information about a specific contact submission.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Contact submission retrieved successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"John Doe\",\n    \"email\": \"john@example.com\",\n    \"phone\": \"1234567890\",\n    \"phone_country_code\": {\n      \"id\": 1,\n      \"phone_code\": \"+1\",\n      \"intl_dialing_prefix\": \"1\"\n    },\n    \"message\": \"I would like to know more about your services.\",\n    \"created_at\": \"2026-01-28T06:05:31+00:00\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Contact submission not found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Delete a contact submission",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/contact\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/contact\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the contact submission."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete a contact form submission.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Contact submission deleted successfully\",\n  \"data\": []\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Contact submission not found.\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Contact Form",
            "description": "\nPublic APIs for submitting contact form. No authentication required.",
            "item": [
                {
                    "name": "Submit contact form",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/contact",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/contact"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"John Doe\",\"email\":\"john@example.com\",\"phone\":\"1234567890\",\"phone_country_code_id\":1,\"message\":\"I would like to know more about your services.\"}"
                        },
                        "description": "Submit a contact form with name, email, phone (with country code), and message.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 201,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Contact form submitted successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"name\": \"John Doe\",\n    \"email\": \"john@example.com\",\n    \"phone\": \"1234567890\",\n    \"phone_country_code\": {\n      \"id\": 1,\n      \"phone_code\": \"+1\",\n      \"intl_dialing_prefix\": \"1\"\n    },\n    \"message\": \"I would like to know more about your services.\",\n    \"created_at\": \"2026-01-28T06:05:31+00:00\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Validation failed\",\n  \"errors\": {\n    \"email\": [\"The email field is required.\"]\n  }\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Coupon Management",
            "description": "\nAPIs for managing coupons. Only accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/coupon",
            "item": [
                {
                    "name": "Get list of all coupons",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coupon",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "search",
                                    "value": "WELCOME",
                                    "description": "Optional search by code or name.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coupon?page=1&per_page=15&search=WELCOME"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a paginated list of all coupons.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new coupon",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coupon",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coupon"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"WELCOME10\",\"name\":\"Welcome Discount\",\"type\":\"percentage\",\"amount\":10,\"usage_limit_per_user\":3,\"applies_to_all\":true,\"is_active\":true,\"starts_at\":\"2026-02-01T00:00:00+00:00\",\"ends_at\":\"2026-02-28T23:59:59+00:00\",\"program_category_ids\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific coupon",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coupon\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coupon\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the coupon."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a coupon",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coupon\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coupon\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the coupon."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"WELCOME10\",\"name\":\"Welcome Discount\",\"type\":\"percentage\",\"amount\":10,\"usage_limit_per_user\":3,\"applies_to_all\":true,\"is_active\":true,\"starts_at\":\"2026-02-01T00:00:00+00:00\",\"ends_at\":\"2026-02-28T23:59:59+00:00\",\"program_category_ids\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a coupon",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coupon\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coupon\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the coupon."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"code\":\"WELCOME10\",\"name\":\"Welcome Discount\",\"type\":\"percentage\",\"amount\":10,\"usage_limit_per_user\":3,\"applies_to_all\":true,\"is_active\":true,\"starts_at\":\"2026-02-01T00:00:00+00:00\",\"ends_at\":\"2026-02-28T23:59:59+00:00\",\"program_category_ids\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a coupon",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/coupon\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/coupon\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the coupon."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Customer Management",
            "description": "\nAPIs for managing customers. Only accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/customer",
            "item": [
                {
                    "name": "Get list of all customers",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/customer",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/customer?page=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a paginated list of all customers with their profiles.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Customers retrieved successfully\",\n  \"data\": {\n    \"current_page\": 1,\n    \"data\": [\n      {\n        \"id\": 1,\n        \"user\": {\n          \"id\": 1,\n          \"first_name\": \"John\",\n          \"last_name\": \"Doe\",\n          \"email\": \"john@example.com\"\n        },\n        \"profile\": {\n          \"phone\": \"1234567890\",\n          \"phone_country_code\": {\n            \"id\": 1,\n            \"phone_code\": \"+1\",\n            \"intl_dialing_prefix\": \"1\"\n          }\n        }\n      }\n    ],\n    \"total\": 10\n  }\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new customer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/customer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/customer"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"john@example.com\",\"phone\":\"1234567890\",\"phone_country_code_id\":1,\"password\":\"password123\",\"notes\":\"VIP customer with special requirements.\",\"address_line_1\":\"123 Main Street\",\"address_line_2\":\"Apt 4B\",\"landmark\":\"Near Central Park\",\"country_id\":1,\"state_id\":1,\"city_id\":1,\"postal_code\":\"12345\"}"
                        },
                        "description": "Create a new customer account with profile information. An email will be sent to the customer with their login credentials.\nThe customer's email is marked as verified by default because the account is created by an admin.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific customer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/customer\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/customer\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the customer."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve detailed information about a specific customer.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Customer retrieved successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"user\": {\n      \"id\": 1,\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"john@example.com\"\n    },\n    \"profile\": {\n      \"phone\": \"1234567890\",\n      \"phone_country_code\": {\n        \"id\": 1,\n        \"phone_code\": \"+1\",\n        \"intl_dialing_prefix\": \"1\"\n      }\n    }\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Customer not found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a customer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/customer\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/customer\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the customer."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"john@example.com\",\"phone\":\"1234567890\",\"phone_country_code_id\":1,\"notes\":\"VIP customer with special requirements.\",\"address_line_1\":\"123 Main Street\",\"address_line_2\":\"Apt 4B\",\"landmark\":\"Near Central Park\",\"country_id\":1,\"state_id\":1,\"city_id\":1,\"postal_code\":\"12345\"}"
                        },
                        "description": "Update customer information and profile details.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a customer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/customer\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/customer\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the customer."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"first_name\":\"John\",\"last_name\":\"Doe\",\"email\":\"john@example.com\",\"phone\":\"1234567890\",\"phone_country_code_id\":1,\"notes\":\"VIP customer with special requirements.\",\"address_line_1\":\"123 Main Street\",\"address_line_2\":\"Apt 4B\",\"landmark\":\"Near Central Park\",\"country_id\":1,\"state_id\":1,\"city_id\":1,\"postal_code\":\"12345\"}"
                        },
                        "description": "Update customer information and profile details.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a customer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/customer\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/customer\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the customer."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Delete a customer account and all associated data. This will also delete the user account.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Customer deleted successfully\",\n  \"data\": []\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Customer not found.\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Disputes",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/admin\/dispute",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/dispute",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/dispute"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/admin\/dispute\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/dispute\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/dispute\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the dispute."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/admin\/dispute\/{id}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/dispute\/:id\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/dispute\/:id\/status",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the dispute."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"status\":\"closed\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - FAQ Management",
            "description": "\nAPIs for managing FAQs for mentee and mentor pages.\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/faq",
            "item": [
                {
                    "name": "Get list of FAQs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/faq",
                            "query": [
                                {
                                    "key": "page_type",
                                    "value": "mentee",
                                    "description": "optional Filter by page type.",
                                    "disabled": false
                                },
                                {
                                    "key": "is_active",
                                    "value": "1",
                                    "description": "optional Filter by active status.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/faq?page_type=mentee&is_active=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Optionally filter by page_type (mentee|mentor) and is_active.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new FAQ",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/faq",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/faq"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_type\":\"mentee\",\"heading\":\"What is a mentee?\",\"description\":\"A mentee is...\",\"is_active\":true,\"sort_order\":1}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific FAQ",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/faq\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/faq\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the FAQ."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update an existing FAQ",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/faq\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/faq\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the FAQ."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_type\":\"mentor\",\"heading\":\"architecto\",\"description\":\"Eius et animi quos velit et.\",\"is_active\":false,\"sort_order\":16}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update an existing FAQ",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/faq\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/faq\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the FAQ."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"page_type\":\"mentor\",\"heading\":\"architecto\",\"description\":\"Eius et animi quos velit et.\",\"is_active\":false,\"sort_order\":16}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete an FAQ",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/faq\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/faq\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the FAQ."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "FAQ (Public)",
            "description": "\nPublic APIs for retrieving FAQs for mentee and mentor pages.\nNo authentication required.\n\nRoutes are prefixed with: \/api\/v1\/faq",
            "item": [
                {
                    "name": "Get FAQs for a given page type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/faq\/:page_type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/faq\/:page_type",
                            "variable": [
                                {
                                    "id": "page_type",
                                    "key": "page_type",
                                    "value": "mentee",
                                    "description": "The page type. Allowed: mentee, mentor."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all active FAQs for the specified page (mentee or mentor), ordered by sort_order and id.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"FAQs retrieved successfully\",\"data\":[]}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Goal Type Management",
            "description": "\nAPIs for managing goal types. Admin enters only the Goal Type Name.\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/goal-type",
            "item": [
                {
                    "name": "Get list of all goal types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/goal-type",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/goal-type?page=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new goal type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/goal-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/goal-type"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Fitness\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific goal type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/goal-type\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/goal-type\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the goal type."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a goal type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/goal-type\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/goal-type\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the goal type."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Fitness\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a goal type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/goal-type\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/goal-type\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the goal type."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Fitness\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a goal type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/goal-type\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/goal-type\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the goal type."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Habit Type Management",
            "description": "\nAPIs for managing habit types. Admin enters only the Habit Type Name.\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/habit-type",
            "item": [
                {
                    "name": "Get list of all habit types",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/habit-type",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/habit-type?page=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new habit type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/habit-type",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/habit-type"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Daily Exercise\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific habit type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/habit-type\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/habit-type\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the habit type."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a habit type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/habit-type\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/habit-type\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the habit type."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Daily Exercise\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a habit type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/habit-type\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/habit-type\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the habit type."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Daily Exercise\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a habit type",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/habit-type\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/habit-type\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the habit type."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Home Page (CMS)",
            "description": "\nAPIs for managing the Home page content (Hero, About Us, Programs, Why Choose Us, Coaches, Articles).\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/home-page",
            "item": [
                {
                    "name": "Get home page data (admin)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/home-page",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/home-page"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the full home page content for editing.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update home page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/home-page",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/home-page"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "section_01[hero_headline]",
                                    "value": "b",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_01[hero_description]",
                                    "value": "n",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_02[headline]",
                                    "value": "g",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_02[secondary_headline]",
                                    "value": "z",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_02[description]",
                                    "value": "Velit et fugiat sunt nihil accusantium.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_02[button_name]",
                                    "value": "n",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_02[button_url]",
                                    "value": "https:\/\/www.runte.com\/ab-provident-perspiciatis-quo-omnis-nostrum-aut-adipisci",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_03[headline]",
                                    "value": "p",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_03[secondary_headline]",
                                    "value": "w",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[headline]",
                                    "value": "l",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[secondary_headline]",
                                    "value": "v",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[options][0][id]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[options][0][title]",
                                    "value": "n",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[options][0][description]",
                                    "value": "Animi quos velit et fugiat.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[options][0][sort_order]",
                                    "value": "42",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_05[headline]",
                                    "value": "q",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_05[secondary_headline]",
                                    "value": "w",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_06[headline]",
                                    "value": "r",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_06[secondary_headline]",
                                    "value": "s",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_01[hero_section_image]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "section_02[about_us_section_image]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "section_04[why_choose_us_section_image]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "Update any section. All sections are optional. Use multipart\/form-data for image uploads.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update home page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/home-page",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/home-page"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "section_01[hero_headline]",
                                    "value": "b",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_01[hero_description]",
                                    "value": "n",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_02[headline]",
                                    "value": "g",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_02[secondary_headline]",
                                    "value": "z",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_02[description]",
                                    "value": "Velit et fugiat sunt nihil accusantium.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_02[button_name]",
                                    "value": "n",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_02[button_url]",
                                    "value": "https:\/\/www.runte.com\/ab-provident-perspiciatis-quo-omnis-nostrum-aut-adipisci",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_03[headline]",
                                    "value": "p",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_03[secondary_headline]",
                                    "value": "w",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[headline]",
                                    "value": "l",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[secondary_headline]",
                                    "value": "v",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[options][0][id]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[options][0][title]",
                                    "value": "n",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[options][0][description]",
                                    "value": "Animi quos velit et fugiat.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_04[options][0][sort_order]",
                                    "value": "42",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_05[headline]",
                                    "value": "q",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_05[secondary_headline]",
                                    "value": "w",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_06[headline]",
                                    "value": "r",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_06[secondary_headline]",
                                    "value": "s",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "section_01[hero_section_image]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "section_02[about_us_section_image]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "section_04[why_choose_us_section_image]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PATCH",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "Update any section. All sections are optional. Use multipart\/form-data for image uploads.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Home Page (Public)",
            "description": "\nPublic API for retrieving the Home page content for the frontend.\nNo authentication required.\n\nRoutes are prefixed with: \/api\/v1\/home-page",
            "item": [
                {
                    "name": "Get home page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/home-page",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/home-page"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all home page sections: Hero, About Us, Programs, Why Choose Us, Coaches, Articles.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Home page not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Values Intermediate Page (Intermediate Steps)",
            "description": "\nAPIs for managing the Values Intermediate Page content (headline and points).\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/intermediate-steps\/values",
            "item": [
                {
                    "name": "Get Values Intermediate Page content (admin)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/values",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/values"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the headline and all points for editing.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Values Intermediate Page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/values",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/values"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"architecto\",\"points\":[\"architecto\"]}"
                        },
                        "description": "Update headline and\/or points. Send full points array to replace; existing points\ncan be updated by id, new points without id will be created.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update Values Intermediate Page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/values",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/values"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"architecto\",\"points\":[\"architecto\"]}"
                        },
                        "description": "Update headline and\/or points. Send full points array to replace; existing points\ncan be updated by id, new points without id will be created.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - The Y Method Page (Intermediate Steps)",
            "description": "\nAPIs for managing The Y Method Page content (headline and steps).\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/intermediate-steps\/y-method",
            "item": [
                {
                    "name": "Get The Y Method Page content (admin)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/y-method",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/y-method"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the headline and all steps for editing.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update The Y Method Page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/y-method",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/y-method"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"architecto\",\"steps\":[\"architecto\"]}"
                        },
                        "description": "Update headline and\/or steps. Send full steps array to replace; existing steps\ncan be updated by id, new steps without id will be created.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update The Y Method Page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/y-method",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/y-method"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"architecto\",\"steps\":[\"architecto\"]}"
                        },
                        "description": "Update headline and\/or steps. Send full steps array to replace; existing steps\ncan be updated by id, new steps without id will be created.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Eight most common mistakes Intermediate Page",
            "description": "\nAPIs for managing the Eight most common mistakes page (headline and mistakes).\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/intermediate-steps\/eight-most-common-mistakes",
            "item": [
                {
                    "name": "Get Eight most common mistakes page content (admin)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/eight-most-common-mistakes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/eight-most-common-mistakes"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the headline and all mistakes for editing.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Eight most common mistakes page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/eight-most-common-mistakes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/eight-most-common-mistakes"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"architecto\",\"mistakes\":[\"architecto\"]}"
                        },
                        "description": "Update headline and\/or mistakes. Send full mistakes array to replace; existing\nitems can be updated by id, new items without id will be created.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update Eight most common mistakes page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/eight-most-common-mistakes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/eight-most-common-mistakes"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"architecto\",\"mistakes\":[\"architecto\"]}"
                        },
                        "description": "Update headline and\/or mistakes. Send full mistakes array to replace; existing\nitems can be updated by id, new items without id will be created.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Goal Settings Intermediate Page",
            "description": "\nAPIs for managing the Goal Settings Intermediate Page (headline, quote, sub-headings, description 2, options).\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/intermediate-steps\/goal-settings",
            "item": [
                {
                    "name": "Get Goal Settings Intermediate Page content (admin)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/goal-settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/goal-settings"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Goal Settings Intermediate Page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/goal-settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/goal-settings"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"architecto\",\"quote\":\"architecto\",\"sub_heading_1\":\"architecto\",\"sub_heading_2\":\"architecto\",\"description_2\":\"architecto\",\"options\":[\"architecto\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update Goal Settings Intermediate Page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/goal-settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/goal-settings"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"architecto\",\"quote\":\"architecto\",\"sub_heading_1\":\"architecto\",\"sub_heading_2\":\"architecto\",\"description_2\":\"architecto\",\"options\":[\"architecto\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Questions for each goal - why? Intermediate Page",
            "description": "\nAPIs for managing the Questions for each goal - why? page (headlines, question blocks, quote).\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/intermediate-steps\/questions-goal-why",
            "item": [
                {
                    "name": "Get Questions for each goal - why? page content (admin)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/questions-goal-why",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/questions-goal-why"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update Questions for each goal - why? page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/questions-goal-why",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/questions-goal-why"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline_1\":\"b\",\"headline_2\":\"n\",\"headline_3\":\"g\",\"headline_4\":\"z\",\"headline_5\":\"m\",\"question_heading_1\":\"i\",\"question_description_1\":\"y\",\"question_heading_2\":\"v\",\"question_description_2\":\"d\",\"question_heading_3\":\"l\",\"question_description_3\":\"j\",\"quote\":\"n\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update Questions for each goal - why? page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/intermediate-steps\/questions-goal-why",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/intermediate-steps\/questions-goal-why"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline_1\":\"b\",\"headline_2\":\"n\",\"headline_3\":\"g\",\"headline_4\":\"z\",\"headline_5\":\"m\",\"question_heading_1\":\"i\",\"question_description_1\":\"y\",\"question_heading_2\":\"v\",\"question_description_2\":\"d\",\"question_heading_3\":\"l\",\"question_description_3\":\"j\",\"quote\":\"n\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Intermediate Steps - Values Page (Public)",
            "description": "\nPublic API for retrieving the Values Intermediate Page content.\n\nRoutes are prefixed with: \/api\/v1\/intermediate-steps",
            "item": [
                {
                    "name": "Get Values Intermediate Page content (public)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/intermediate-steps\/values",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/intermediate-steps\/values"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the headline and points for display.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Values Intermediate Page not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Intermediate Steps - The Y Method Page (Public)",
            "description": "\nPublic API for retrieving The Y Method Page content.\n\nRoutes are prefixed with: \/api\/v1\/intermediate-steps",
            "item": [
                {
                    "name": "Get The Y Method Page content (public)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/intermediate-steps\/y-method",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/intermediate-steps\/y-method"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the headline and steps for display.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"The Y Method Page not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Intermediate Steps - Eight most common mistakes (Public)",
            "description": "\nPublic API for retrieving the Eight most common mistakes page content.\n\nRoutes are prefixed with: \/api\/v1\/intermediate-steps",
            "item": [
                {
                    "name": "Get Eight most common mistakes page content (public)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/intermediate-steps\/eight-most-common-mistakes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/intermediate-steps\/eight-most-common-mistakes"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the headline and mistakes for display.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Eight most common mistakes page not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Intermediate Steps - Goal Settings (Public)",
            "description": "\nPublic API for retrieving the Goal Settings Intermediate Page content.",
            "item": [
                {
                    "name": "Get Goal Settings Intermediate Page content (public)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/intermediate-steps\/goal-settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/intermediate-steps\/goal-settings"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Goal Settings Intermediate Page not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Intermediate Steps - Questions for each goal - why? (Public)",
            "description": "\nPublic API for retrieving the Questions for each goal - why? page content.",
            "item": [
                {
                    "name": "Get Questions for each goal - why? page content (public)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/intermediate-steps\/questions-goal-why",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/intermediate-steps\/questions-goal-why"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Questions for each goal - why? page not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Legal Pages (CMS)",
            "description": "\nAPIs for managing legal pages (privacy policy, refund policy, terms & conditions).\nOnly accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/legal-page",
            "item": [
                {
                    "name": "List all legal pages",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-page",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-page"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all legal pages (privacy policy, refund policy, terms & conditions).",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Legal pages retrieved successfully\",\"data\":[{\"id\":1,\"slug\":\"privacy-policy\",\"content\":\"...\",\"updated_at\":\"...\"},...]}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get a legal page by slug (admin)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-page\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-page\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "privacy-policy",
                                    "description": "The page slug."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a legal page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-page\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-page\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "privacy-policy",
                                    "description": "The page slug."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"content\":\"<p>Privacy policy content...<\\\/p>\"}"
                        },
                        "description": "Update the content of a legal page. Slug cannot be changed.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Legal page updated successfully\",\"data\":{...}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Legal page not found.\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a legal page",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/legal-page\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/legal-page\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "privacy-policy",
                                    "description": "The page slug."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"content\":\"<p>Privacy policy content...<\\\/p>\"}"
                        },
                        "description": "Update the content of a legal page. Slug cannot be changed.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Legal page updated successfully\",\"data\":{...}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Legal page not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Legal Pages (Public)",
            "description": "\nPublic APIs for retrieving legal page content (privacy policy, refund policy, terms & conditions).\nNo authentication required.\n\nRoutes are prefixed with: \/api\/v1\/legal-page",
            "item": [
                {
                    "name": "Get a legal page by slug",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/legal-page\/:slug",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/legal-page\/:slug",
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "privacy-policy",
                                    "description": "The page slug."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the content for the given legal page. Valid slugs: privacy-policy, refund-policy, terms-conditions.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Legal page retrieved successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"slug\": \"privacy-policy\",\n    \"content\": \"...\",\n    \"updated_at\": \"2026-02-04T14:00:00+00:00\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Legal page not found.\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Location",
            "description": "\nAPIs for retrieving location data including countries, states, cities, and phone country codes.",
            "item": [
                {
                    "name": "Get list of all countries",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/location\/countries",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/location\/countries"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a list of all available countries.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Countries retrieved successfully\",\n  \"data\": [\n    {\n      \"id\": 1,\n      \"name\": \"United States\"\n    },\n    {\n      \"id\": 2,\n      \"name\": \"Canada\"\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get list of all states for a specific country",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/location\/countries\/:countryId\/states",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/location\/countries\/:countryId\/states",
                            "variable": [
                                {
                                    "id": "countryId",
                                    "key": "countryId",
                                    "value": "1",
                                    "description": "The ID of the country."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a list of all states\/provinces for a given country.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"States retrieved successfully\",\n  \"data\": [\n    {\n      \"id\": 1,\n      \"country_id\": 1,\n      \"name\": \"California\"\n    },\n    {\n      \"id\": 2,\n      \"country_id\": 1,\n      \"name\": \"New York\"\n    }\n  ]\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Country not found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get list of all cities for a specific state",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/location\/states\/:stateId\/cities",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/location\/states\/:stateId\/cities",
                            "variable": [
                                {
                                    "id": "stateId",
                                    "key": "stateId",
                                    "value": "1",
                                    "description": "The ID of the state."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a list of all cities for a given state\/province.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Cities retrieved successfully\",\n  \"data\": [\n    {\n      \"id\": 1,\n      \"state_id\": 1,\n      \"name\": \"Los Angeles\"\n    },\n    {\n      \"id\": 2,\n      \"state_id\": 1,\n      \"name\": \"San Francisco\"\n    }\n  ]\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"State not found.\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get list of all phone country codes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/location\/phone-country-codes",
                            "query": [
                                {
                                    "key": "country_id",
                                    "value": "1",
                                    "description": "optional Filter phone codes by country ID.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/location\/phone-country-codes?country_id=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Retrieve a list of all phone country codes. Optionally filter by country ID.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Phone country codes retrieved successfully\",\n  \"data\": [\n    {\n      \"id\": 1,\n      \"phone_code\": \"+1\"\n    },\n    {\n      \"id\": 2,\n      \"phone_code\": \"+91\"\n    }\n  ]\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Program Category Management",
            "description": "\nAPIs for managing program categories and sub-categories. Only accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/program-category",
            "item": [
                {
                    "name": "Get list of program categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program-category",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "parent_id",
                                    "value": "",
                                    "description": "optional Filter by parent (0 or \"null\" for root-level only, or category id for children).",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program-category?page=1&per_page=15&parent_id="
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Optional filter: parent_id=null or omitted for all; parent_id=0 for roots only; parent_id={id} for children of that category.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new program category or sub-category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program-category",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program-category"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"parent_id\":null,\"name\":\"Personal Training\",\"slug\":\"personal-training\",\"description\":\"One-on-one fitness coaching sessions.\",\"sort_order\":0,\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific program category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the program category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a program category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the program category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Personal Training\",\"slug\":\"personal-training\",\"description\":\"One-on-one fitness coaching sessions.\",\"sort_order\":0,\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a program category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the program category."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Personal Training\",\"slug\":\"personal-training\",\"description\":\"One-on-one fitness coaching sessions.\",\"sort_order\":0,\"is_active\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a program category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the program category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Children will have their parent_id set to null (become root-level) via onDelete('set null').",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Program Categories (Public)",
            "description": "\nPublic APIs for listing program categories and sub-categories. No authentication required.\nReturns only active categories. Use parent_id filter or nested=1 for tree.\n\nAll routes are prefixed with: \/api\/v1\/program-category",
            "item": [
                {
                    "name": "List active program categories",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program-category",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "parent_id",
                                    "value": "",
                                    "description": "optional Filter by parent (null\/0 for roots, or category id for children).",
                                    "disabled": true
                                },
                                {
                                    "key": "nested",
                                    "value": "0",
                                    "description": "optional Set to 1 to get root categories with children nested.",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/program-category?page=1&per_page=15&parent_id=&nested=0"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Optional: parent_id=null (or 0) for root-level only; parent_id={id} for children of that category.\nOptional: nested=1 to return root categories with their active children nested.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Program categories retrieved successfully\",\"data\":{\"data\":[],\"links\":{\"first\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/program-category?page=1\",\"last\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/program-category?page=1\",\"prev\":null,\"next\":null},\"meta\":{\"current_page\":1,\"from\":null,\"last_page\":1,\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/program-category?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"path\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/program-category\",\"per_page\":15,\"to\":null,\"total\":0}}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get a single active program category (optionally with children)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program-category\/:id",
                            "query": [
                                {
                                    "key": "with_children",
                                    "value": "0",
                                    "description": "optional Set to 1 to include active child categories.",
                                    "disabled": true
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/program-category\/:id?with_children=0",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the program category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 404,
                            "body": "{\"success\":false,\"message\":\"Program category not found.\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Program Management",
            "description": "\nAPIs for managing programs. Only accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/program",
            "item": [
                {
                    "name": "Get list of programs",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "program_category_id",
                                    "value": "1",
                                    "description": "optional Filter by program category.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program?page=1&per_page=15&program_category_id=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new program",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "name",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `name`. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "program_category_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `program_category_id`. The <code>id<\/code> of an existing record in the program_categories table."
                                },
                                {
                                    "key": "description",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `description`."
                                },
                                {
                                    "key": "occurrence_type",
                                    "value": "one_time",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `occurrence_type`."
                                },
                                {
                                    "key": "session_duration_minutes",
                                    "value": "180",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `session_duration_minutes`."
                                },
                                {
                                    "key": "tenure_weeks",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `tenure_weeks`. This field is required when <code>occurrence_type<\/code> is <code>recurring<\/code>. Must be at least 1. Must not be greater than 520."
                                },
                                {
                                    "key": "sessions_per_week",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `sessions_per_week`. This field is required when <code>occurrence_type<\/code> is <code>recurring<\/code>. Must be at least 1. Must not be greater than 28."
                                },
                                {
                                    "key": "sale_price",
                                    "value": "37",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `sale_price`. Must be at least 0."
                                },
                                {
                                    "key": "original_price",
                                    "value": "9",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `original_price`. Must be at least 0."
                                },
                                {
                                    "key": "coach_commission_type",
                                    "value": "custom",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `coach_commission_type`."
                                },
                                {
                                    "key": "custom_commission_rate",
                                    "value": "17",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `custom_commission_rate`. This field is required when <code>coach_commission_type<\/code> is <code>custom<\/code>. Must be at least 0. Must not be greater than 100."
                                },
                                {
                                    "key": "coach_ids[0]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "tag",
                                    "value": "recommended",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `tag`."
                                },
                                {
                                    "key": "faqs[0][heading]",
                                    "value": "n",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "faqs[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "faqs[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "benefits[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "benefits[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "how_it_works[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "how_it_works[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "main_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "gallery_images[]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "faqs_section_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "benefits_section_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "how_it_works_section_image",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific program",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a program",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "name",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `name`. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "program_category_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `program_category_id`. The <code>id<\/code> of an existing record in the program_categories table."
                                },
                                {
                                    "key": "description",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `description`."
                                },
                                {
                                    "key": "occurrence_type",
                                    "value": "recurring",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `occurrence_type`."
                                },
                                {
                                    "key": "session_duration_minutes",
                                    "value": "210",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `session_duration_minutes`."
                                },
                                {
                                    "key": "tenure_weeks",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `tenure_weeks`. Must be at least 1. Must not be greater than 520."
                                },
                                {
                                    "key": "sessions_per_week",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `sessions_per_week`. Must be at least 1. Must not be greater than 28."
                                },
                                {
                                    "key": "sale_price",
                                    "value": "37",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `sale_price`. Must be at least 0."
                                },
                                {
                                    "key": "original_price",
                                    "value": "9",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `original_price`. Must be at least 0."
                                },
                                {
                                    "key": "coach_commission_type",
                                    "value": "global",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `coach_commission_type`."
                                },
                                {
                                    "key": "custom_commission_rate",
                                    "value": "17",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `custom_commission_rate`. Must be at least 0. Must not be greater than 100."
                                },
                                {
                                    "key": "coach_ids[0]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "tag",
                                    "value": "most_rated",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `tag`."
                                },
                                {
                                    "key": "faqs[0][id]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "faqs[0][heading]",
                                    "value": "n",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "faqs[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "faqs[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "benefits[0][id]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "benefits[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "benefits[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "how_it_works[0][id]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "how_it_works[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "how_it_works[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "main_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "gallery_images[]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "faqs_section_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "benefits_section_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "how_it_works_section_image",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a program",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "name",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `name`. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "program_category_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `program_category_id`. The <code>id<\/code> of an existing record in the program_categories table."
                                },
                                {
                                    "key": "description",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `description`."
                                },
                                {
                                    "key": "occurrence_type",
                                    "value": "recurring",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `occurrence_type`."
                                },
                                {
                                    "key": "session_duration_minutes",
                                    "value": "105",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `session_duration_minutes`."
                                },
                                {
                                    "key": "tenure_weeks",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `tenure_weeks`. Must be at least 1. Must not be greater than 520."
                                },
                                {
                                    "key": "sessions_per_week",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `sessions_per_week`. Must be at least 1. Must not be greater than 28."
                                },
                                {
                                    "key": "sale_price",
                                    "value": "37",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `sale_price`. Must be at least 0."
                                },
                                {
                                    "key": "original_price",
                                    "value": "9",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `original_price`. Must be at least 0."
                                },
                                {
                                    "key": "coach_commission_type",
                                    "value": "global",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `coach_commission_type`."
                                },
                                {
                                    "key": "custom_commission_rate",
                                    "value": "17",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `custom_commission_rate`. Must be at least 0. Must not be greater than 100."
                                },
                                {
                                    "key": "coach_ids[0]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "tag",
                                    "value": "most_rated",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `tag`."
                                },
                                {
                                    "key": "faqs[0][id]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "faqs[0][heading]",
                                    "value": "n",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "faqs[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "faqs[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "benefits[0][id]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "benefits[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "benefits[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "how_it_works[0][id]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "how_it_works[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "how_it_works[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "main_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "gallery_images[]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "faqs_section_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "benefits_section_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "how_it_works_section_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a program",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "name",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `name`. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "program_category_id",
                                    "value": "16",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `program_category_id`. The <code>id<\/code> of an existing record in the program_categories table."
                                },
                                {
                                    "key": "description",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `description`."
                                },
                                {
                                    "key": "occurrence_type",
                                    "value": "one_time",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `occurrence_type`."
                                },
                                {
                                    "key": "session_duration_minutes",
                                    "value": "240",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `session_duration_minutes`."
                                },
                                {
                                    "key": "tenure_weeks",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `tenure_weeks`. Must be at least 1. Must not be greater than 520."
                                },
                                {
                                    "key": "sessions_per_week",
                                    "value": "1",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `sessions_per_week`. Must be at least 1. Must not be greater than 28."
                                },
                                {
                                    "key": "sale_price",
                                    "value": "37",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `sale_price`. Must be at least 0."
                                },
                                {
                                    "key": "original_price",
                                    "value": "9",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `original_price`. Must be at least 0."
                                },
                                {
                                    "key": "coach_commission_type",
                                    "value": "global",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `coach_commission_type`."
                                },
                                {
                                    "key": "custom_commission_rate",
                                    "value": "17",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `custom_commission_rate`. Must be at least 0. Must not be greater than 100."
                                },
                                {
                                    "key": "coach_ids[0]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "tag",
                                    "value": "most_rated",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `tag`."
                                },
                                {
                                    "key": "faqs[0][id]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "faqs[0][heading]",
                                    "value": "n",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "faqs[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "faqs[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "benefits[0][id]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "benefits[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "benefits[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "how_it_works[0][id]",
                                    "value": "16",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "how_it_works[0][description]",
                                    "value": "Eius et animi quos velit et.",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "how_it_works[0][sort_order]",
                                    "value": "60",
                                    "type": "text",
                                    "description": ""
                                },
                                {
                                    "key": "main_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "gallery_images[]",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "faqs_section_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "benefits_section_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "how_it_works_section_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PATCH",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a single gallery image from a program",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/gallery\/:imageId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/gallery\/:imageId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "imageId",
                                    "key": "imageId",
                                    "value": "5",
                                    "description": "The ID of the gallery image to delete."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a program",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Program Reviews",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/admin\/review",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/review",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/review"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/admin\/review\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/review\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/review\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the review."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Program Settings",
            "description": "\nAPIs for managing program settings (Quote Category and Card Category per program).\nUsed to select which quote category and card category are used for this program (e.g. for future quotes and cards modules).\n\nRoutes: \/api\/v1\/admin\/program\/{id}\/settings",
            "item": [
                {
                    "name": "Get program settings (quote category and card category).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/settings",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update program settings (set or change quote category and\/or card category).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/settings",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"quote_category_id\":16,\"card_category_id\":16,\"coach_can_edit_modules\":false,\"coach_editable_module_types\":[\"upload_documents\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update program settings (set or change quote category and\/or card category).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/settings",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"quote_category_id\":16,\"card_category_id\":16,\"coach_can_edit_modules\":true,\"coach_editable_module_types\":[\"wheel_of_life\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Program Structure",
            "description": "\nAPIs for managing program structure (ordered modules) and module content.\nRoutes: \/api\/v1\/admin\/program\/{id}\/structure",
            "item": [
                {
                    "name": "List program structure (all modules in order).",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a module to the program structure.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"module_type\":\"values\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder modules in the program structure.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder modules in the program structure.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Remove a module from the program structure.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List words for a Find your Motivation module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/words",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/words",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a word to a Find your Motivation module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/words",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/words",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"word\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder words in a Find your Motivation module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/words\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/words\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder words in a Find your Motivation module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/words\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/words\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a word in a Find your Motivation module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/words\/:wordId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/words\/:wordId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "wordId",
                                    "key": "wordId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"word\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a word in a Find your Motivation module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/words\/:wordId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/words\/:wordId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "wordId",
                                    "key": "wordId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"word\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a word from a Find your Motivation module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/words\/:wordId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/words\/:wordId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "wordId",
                                    "key": "wordId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List questions for a Values module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a question to a Values module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"dropdown\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder questions in a Values module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder questions in a Values module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a question in a Values module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"single_choice\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a question in a Values module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"single_choice\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a question from a Values module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/values\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List questions for a Who am I module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a question to a Who am I module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"multi_choice\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder questions in a Who am I module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder questions in a Who am I module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a question in a Who am I module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"multi_choice\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a question in a Who am I module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"multi_choice\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a question from a Who am I module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/who-am-i\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List question sets for a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Reorder question sets in a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder question sets in a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a question set (e.g. rename title) in a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a question set (e.g. rename title) in a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"title\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a question set from a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List questions in a Card Game question set.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a question to a Card Game question set.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"dropdown\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder questions in a Card Game question set.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder questions in a Card Game question set.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a question in a Card Game question set.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"descriptive\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a question in a Card Game question set.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"descriptive\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a question from a Card Game question set.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/question-sets\/:setId\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List cards for a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a new card to a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"b\",\"description\":\"Eius et animi quos velit et.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder cards in a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder cards in a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a card in a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards\/:cardId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards\/:cardId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "cardId",
                                    "key": "cardId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"b\",\"description\":\"Eius et animi quos velit et.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a card in a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards\/:cardId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards\/:cardId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "cardId",
                                    "key": "cardId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"b\",\"description\":\"Eius et animi quos velit et.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a card from a Card Game module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards\/:cardId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/card-game\/cards\/:cardId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "cardId",
                                    "key": "cardId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List documents for an Upload Documents module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Upload one or more documents to an Upload Documents module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "original_name",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `original_name`. Must not be greater than 255 characters."
                                },
                                {
                                    "key": "file",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "files[]",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "Single file: multipart field \"file\" (optional \"original_name\").\nMultiple files: multipart field \"files[]\" (array of files).",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder documents in an Upload Documents module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder documents in an Upload Documents module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a document (e.g. display name) in an Upload Documents module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents\/:documentId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents\/:documentId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "documentId",
                                    "key": "documentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"original_name\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a document (e.g. display name) in an Upload Documents module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents\/:documentId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents\/:documentId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "documentId",
                                    "key": "documentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"original_name\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a document from an Upload Documents module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents\/:documentId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/upload-documents\/:documentId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "documentId",
                                    "key": "documentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List life elements for a Wheel of Life module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a life element to a Wheel of Life module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder life elements in a Wheel of Life module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder life elements in a Wheel of Life module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a life element in a Wheel of Life module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a life element in a Wheel of Life module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a life element from a Wheel of Life module.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "List questions for a Wheel of Life life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Add a question to a Wheel of Life life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"dropdown\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder questions in a Wheel of Life life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Reorder questions in a Wheel of Life life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/reorder",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/reorder",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"order\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a question in a Wheel of Life life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"single_choice\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a question in a Wheel of Life life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"type\":\"dropdown\",\"question_text\":\"b\",\"options\":[\"n\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a question from a Wheel of Life life element.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Program-specific intermediate Values page \u2013 show.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-values",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-values",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Program-specific intermediate Values page \u2013 update.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-values",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-values",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"b\",\"points\":[{\"id\":16,\"description\":\"Et animi quos velit et fugiat.\",\"sort_order\":42}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Program-specific intermediate Values page \u2013 update.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-values",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-values",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"b\",\"points\":[{\"id\":16,\"description\":\"Et animi quos velit et fugiat.\",\"sort_order\":42}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Program-specific intermediate Eight most common mistakes page \u2013 show.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-eight-most-common-mistakes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-eight-most-common-mistakes",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Program-specific intermediate Eight most common mistakes page \u2013 update.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-eight-most-common-mistakes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-eight-most-common-mistakes",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"b\",\"mistakes\":[{\"id\":16,\"description\":\"Et animi quos velit et fugiat.\",\"sort_order\":42}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Program-specific intermediate Eight most common mistakes page \u2013 update.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-eight-most-common-mistakes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-eight-most-common-mistakes",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"b\",\"mistakes\":[{\"id\":16,\"description\":\"Et animi quos velit et fugiat.\",\"sort_order\":42}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Program-specific intermediate Goal Settings page \u2013 show.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-goal-settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-goal-settings",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Program-specific intermediate Goal Settings page \u2013 update.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-goal-settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-goal-settings",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"b\",\"quote\":\"n\",\"sub_heading_1\":\"g\",\"sub_heading_2\":\"z\",\"description_2\":\"m\",\"options\":[{\"id\":16,\"description\":\"Et animi quos velit et fugiat.\",\"sort_order\":42}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Program-specific intermediate Goal Settings page \u2013 update.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-goal-settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-goal-settings",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"b\",\"quote\":\"n\",\"sub_heading_1\":\"g\",\"sub_heading_2\":\"z\",\"description_2\":\"m\",\"options\":[{\"id\":16,\"description\":\"Et animi quos velit et fugiat.\",\"sort_order\":42}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Program-specific intermediate Questions Goal Why page \u2013 show.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-questions-goal-why",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-questions-goal-why",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Program-specific intermediate Questions Goal Why page \u2013 update.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-questions-goal-why",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-questions-goal-why",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline_1\":\"b\",\"headline_2\":\"n\",\"headline_3\":\"g\",\"headline_4\":\"z\",\"headline_5\":\"m\",\"question_heading_1\":\"i\",\"question_description_1\":\"y\",\"question_heading_2\":\"v\",\"question_description_2\":\"d\",\"question_heading_3\":\"l\",\"question_description_3\":\"j\",\"quote\":\"n\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Program-specific intermediate Questions Goal Why page \u2013 update.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-questions-goal-why",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-questions-goal-why",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline_1\":\"b\",\"headline_2\":\"n\",\"headline_3\":\"g\",\"headline_4\":\"z\",\"headline_5\":\"m\",\"question_heading_1\":\"i\",\"question_description_1\":\"y\",\"question_heading_2\":\"v\",\"question_description_2\":\"d\",\"question_heading_3\":\"l\",\"question_description_3\":\"j\",\"quote\":\"n\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Program-specific intermediate Y Method page \u2013 show.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-y-method",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-y-method",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Program-specific intermediate Y Method page \u2013 update.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-y-method",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-y-method",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"b\",\"steps\":[{\"id\":16,\"description\":\"Et animi quos velit et fugiat.\",\"sort_order\":42}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Program-specific intermediate Y Method page \u2013 update.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-y-method",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-y-method",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"headline\":\"b\",\"steps\":[{\"id\":16,\"description\":\"Et animi quos velit et fugiat.\",\"sort_order\":42}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Complete setup for an intermediate module: choose global vs specific.",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-steps\/complete-setup",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/program\/:id\/structure\/:structureId\/intermediate-steps\/complete-setup",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the program."
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Payouts",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/admin\/payout",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/payout",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/payout"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/admin\/payout\/settings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/payout\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/payout\/settings"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/admin\/payout\/settings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/payout\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/payout\/settings"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"global_commission_rate\":1,\"payout_frequency\":\"7_days\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/admin\/payout\/settings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/payout\/settings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/payout\/settings"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"global_commission_rate\":1,\"payout_frequency\":\"14_days\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/admin\/payout\/{id}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/payout\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/payout\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the payout."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/admin\/payout\/{id}\/status",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/payout\/:id\/status",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/payout\/:id\/status",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the payout."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "status",
                                    "value": "paid",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `status`."
                                },
                                {
                                    "key": "transaction_number",
                                    "value": "b",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `transaction_number`. Must not be greater than 120 characters."
                                },
                                {
                                    "key": "payment_notes",
                                    "value": "n",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `payment_notes`. Must not be greater than 2000 characters."
                                },
                                {
                                    "key": "payment_receipt",
                                    "src": [],
                                    "type": "file"
                                }
                            ]
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Quote Management",
            "description": "\nAPIs for managing quotes within quote categories. Only accessible by admin users.\nEach category has unlimited quotes. Admin provides quote text when creating.\n\nAll routes are prefixed with: \/api\/v1\/admin\/quote-category\/quotes",
            "item": [
                {
                    "name": "Get list of quotes",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category\/quotes",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "quote_category_id",
                                    "value": "1",
                                    "description": "optional Filter by quote category.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category\/quotes?page=1&per_page=15&quote_category_id=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new quote",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category\/quotes",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category\/quotes"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"quote_category_id\":1,\"quote\":\"The only way to do great work is to love what you do.\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific quote",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category\/quotes\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category\/quotes\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a quote",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category\/quotes\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category\/quotes\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"quote_category_id\":16,\"quote\":\"architecto\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a quote",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category\/quotes\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category\/quotes\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"quote_category_id\":16,\"quote\":\"architecto\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a quote",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category\/quotes\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category\/quotes\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the quote."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Quote Category Management",
            "description": "\nAPIs for managing quote categories. Only accessible by admin users.\nAdmin provides only the quote category name when creating.\n\nAll routes are prefixed with: \/api\/v1\/admin\/quote-category",
            "item": [
                {
                    "name": "Get list of quote categories (with quotes count)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category?page=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new quote category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Motivation\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific quote category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the quote category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a quote category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the quote category."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"architecto\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a quote category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the quote category."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"architecto\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a quote category",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/quote-category\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/quote-category\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "1",
                                    "description": "The ID of the quote category."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Admin - Shift Management",
            "description": "\nAPIs for managing shifts (name, start time, end time) for working days.\nBy default a shift is applied to all working days. Only accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/shift\n\nDay of week: 0=Sunday, 1=Monday, ..., 6=Saturday",
            "item": [
                {
                    "name": "Get list of all shifts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/shift",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/shift?page=1&per_page=15"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Create a new shift",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/shift",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/shift"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"Morning Shift\",\"start_time\":\"09:00\",\"end_time\":\"17:00\",\"working_days\":[1,2,3,4,5]}"
                        },
                        "description": "By default the shift is applied to all working days. Pass working_days to restrict to specific days (0-6).",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Get a specific shift",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/shift\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/shift\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the shift."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update a shift",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/shift\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/shift\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the shift."
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"b\",\"start_time\":\"17:16\",\"end_time\":\"17:16\",\"working_days\":[4]}"
                        },
                        "description": "Pass working_days to set which days (0-6) the shift applies to. Omit to leave days unchanged.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Update a shift",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/shift\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/shift\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the shift."
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"name\":\"b\",\"start_time\":\"17:16\",\"end_time\":\"17:16\",\"working_days\":[4]}"
                        },
                        "description": "Pass working_days to set which days (0-6) the shift applies to. Omit to leave days unchanged.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "Delete a shift",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/shift\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/shift\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the shift."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Shifts (Public)",
            "description": "\nPublic API for reading shifts. No authentication required.\n\nAll routes are prefixed with: \/api\/v1\/shift\n\nDay of week: 0=Sunday, 1=Monday, ..., 6=Saturday",
            "item": [
                {
                    "name": "List shifts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/shift",
                            "query": [
                                {
                                    "key": "page",
                                    "value": "1",
                                    "description": "The page number.",
                                    "disabled": false
                                },
                                {
                                    "key": "per_page",
                                    "value": "15",
                                    "description": "Number of items per page.",
                                    "disabled": false
                                },
                                {
                                    "key": "day_of_week",
                                    "value": "1",
                                    "description": "Filter shifts that apply to this day (0=Sunday..6=Saturday).",
                                    "disabled": false
                                }
                            ],
                            "raw": "{{baseUrl}}\/api\/v1\/shift?page=1&per_page=15&day_of_week=1"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all shifts with their name, start\/end time and working day numbers.\nOptionally filter by day_of_week (0-6) to get shifts that apply to that day.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Shifts retrieved successfully\",\"data\":{\"current_page\":1,\"data\":[],\"first_page_url\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/shift?page=1\",\"from\":null,\"last_page\":1,\"last_page_url\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/shift?page=1\",\"links\":[{\"url\":null,\"label\":\"&laquo; Previous\",\"page\":null,\"active\":false},{\"url\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/shift?page=1\",\"label\":\"1\",\"page\":1,\"active\":true},{\"url\":null,\"label\":\"Next &raquo;\",\"page\":null,\"active\":false}],\"next_page_url\":null,\"path\":\"https:\\\/\\\/ruhline-api.test\\\/api\\\/v1\\\/shift\",\"per_page\":15,\"prev_page_url\":null,\"to\":null,\"total\":0}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Get a single shift",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/shift\/:id",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/shift\/:id",
                            "variable": [
                                {
                                    "id": "id",
                                    "key": "id",
                                    "value": "architecto",
                                    "description": "The ID of the shift."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 500,
                            "body": "{\n    \"message\": \"Server Error\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Site Settings (CMS)",
            "description": "\nAPIs for managing site settings. Only accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/site-setting",
            "item": [
                {
                    "name": "Get site settings (admin)",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/site-setting",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/site-setting"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the current site settings for editing.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update site settings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/site-setting",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/site-setting"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "footer_description",
                                    "value": "Your fitness partner.",
                                    "type": "text",
                                    "description": "optional Footer description text."
                                },
                                {
                                    "key": "copyright",
                                    "value": "\u00a9 2026 Company Name",
                                    "type": "text",
                                    "description": "optional Copyright text."
                                },
                                {
                                    "key": "facebook_url",
                                    "value": "https:\/\/facebook.com\/...",
                                    "type": "text",
                                    "description": "optional Facebook profile URL."
                                },
                                {
                                    "key": "instagram_url",
                                    "value": "https:\/\/instagram.com\/...",
                                    "type": "text",
                                    "description": "optional Instagram profile URL."
                                },
                                {
                                    "key": "linkedin_url",
                                    "value": "https:\/\/linkedin.com\/...",
                                    "type": "text",
                                    "description": "optional LinkedIn profile URL."
                                },
                                {
                                    "key": "address_line_1",
                                    "value": "123 Main St",
                                    "type": "text",
                                    "description": "optional Address line 1."
                                },
                                {
                                    "key": "address_line_2",
                                    "value": "Suite 100",
                                    "type": "text",
                                    "description": "optional Address line 2."
                                },
                                {
                                    "key": "landmark",
                                    "value": "Near Central Park",
                                    "type": "text",
                                    "description": "optional Landmark."
                                },
                                {
                                    "key": "country_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "optional Country ID (from countries table)."
                                },
                                {
                                    "key": "state_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "optional State ID (from states table)."
                                },
                                {
                                    "key": "city_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "optional City ID (from cities table)."
                                },
                                {
                                    "key": "zipcode",
                                    "value": "10001",
                                    "type": "text",
                                    "description": "optional Zip\/Postal code."
                                },
                                {
                                    "key": "global_commission_rate",
                                    "value": "10.5",
                                    "type": "text",
                                    "description": "optional Global commission rate for coaches (0-100%)."
                                },
                                {
                                    "key": "payout_frequency",
                                    "value": "7_days",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `payout_frequency`."
                                },
                                {
                                    "key": "favicon",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "header_logo",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "page_header_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "footer_logo",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PUT",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "Update site settings. All fields are optional; only provided fields are updated.\nImage fields accept file uploads; text\/URL fields accept strings.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Site settings updated successfully\",\"data\":{...}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"success\":false,\"message\":\"Validation failed\",\"errors\":{...}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update site settings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/site-setting",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/site-setting"
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "multipart\/form-data"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "formdata",
                            "formdata": [
                                {
                                    "key": "footer_description",
                                    "value": "Your fitness partner.",
                                    "type": "text",
                                    "description": "optional Footer description text."
                                },
                                {
                                    "key": "copyright",
                                    "value": "\u00a9 2026 Company Name",
                                    "type": "text",
                                    "description": "optional Copyright text."
                                },
                                {
                                    "key": "facebook_url",
                                    "value": "https:\/\/facebook.com\/...",
                                    "type": "text",
                                    "description": "optional Facebook profile URL."
                                },
                                {
                                    "key": "instagram_url",
                                    "value": "https:\/\/instagram.com\/...",
                                    "type": "text",
                                    "description": "optional Instagram profile URL."
                                },
                                {
                                    "key": "linkedin_url",
                                    "value": "https:\/\/linkedin.com\/...",
                                    "type": "text",
                                    "description": "optional LinkedIn profile URL."
                                },
                                {
                                    "key": "address_line_1",
                                    "value": "123 Main St",
                                    "type": "text",
                                    "description": "optional Address line 1."
                                },
                                {
                                    "key": "address_line_2",
                                    "value": "Suite 100",
                                    "type": "text",
                                    "description": "optional Address line 2."
                                },
                                {
                                    "key": "landmark",
                                    "value": "Near Central Park",
                                    "type": "text",
                                    "description": "optional Landmark."
                                },
                                {
                                    "key": "country_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "optional Country ID (from countries table)."
                                },
                                {
                                    "key": "state_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "optional State ID (from states table)."
                                },
                                {
                                    "key": "city_id",
                                    "value": "1",
                                    "type": "text",
                                    "description": "optional City ID (from cities table)."
                                },
                                {
                                    "key": "zipcode",
                                    "value": "10001",
                                    "type": "text",
                                    "description": "optional Zip\/Postal code."
                                },
                                {
                                    "key": "global_commission_rate",
                                    "value": "10.5",
                                    "type": "text",
                                    "description": "optional Global commission rate for coaches (0-100%)."
                                },
                                {
                                    "key": "payout_frequency",
                                    "value": "7_days",
                                    "type": "text",
                                    "description": "Auto-generated from validation rules for `payout_frequency`."
                                },
                                {
                                    "key": "favicon",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "header_logo",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "page_header_image",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "footer_logo",
                                    "src": [],
                                    "type": "file"
                                },
                                {
                                    "key": "_method",
                                    "value": "PATCH",
                                    "type": "text"
                                }
                            ]
                        },
                        "description": "Update site settings. All fields are optional; only provided fields are updated.\nImage fields accept file uploads; text\/URL fields accept strings.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Site settings updated successfully\",\"data\":{...}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"success\":false,\"message\":\"Validation failed\",\"errors\":{...}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Site Settings (Public)",
            "description": "\nPublic APIs for retrieving site settings (logos, footer, social links, address).\nNo authentication required.\n\nRoutes are prefixed with: \/api\/v1\/site-setting",
            "item": [
                {
                    "name": "Get site settings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/site-setting",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/site-setting"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns the current site settings for the frontend (favicon, logos, footer, social links, address).",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Site settings retrieved successfully\",\n  \"data\": {\n    \"id\": 1,\n    \"favicon\": \"http:\/\/localhost\/storage\/favicon.ico\",\n    \"header_logo\": \"http:\/\/localhost\/storage\/site\/header-logo.png\",\n    \"page_header_image\": \"http:\/\/localhost\/storage\/site\/page-header.jpg\",\n    \"footer_logo\": \"http:\/\/localhost\/storage\/site\/footer-logo.png\",\n    \"footer_description\": \"Your fitness partner.\",\n    \"copyright\": \"\u00a9 2026 Company Name\",\n    \"social_media\": {\n      \"facebook_url\": \"https:\/\/facebook.com\/...\",\n      \"instagram_url\": \"https:\/\/instagram.com\/...\",\n      \"linkedin_url\": \"https:\/\/linkedin.com\/...\"\n    },\n    \"address\": {\n      \"address_line_1\": \"123 Main St\",\n      \"address_line_2\": \"Suite 100\",\n      \"landmark\": \"Near Central Park\",\n      \"city\": \"New York\",\n      \"state\": \"NY\",\n      \"country\": \"USA\",\n      \"zipcode\": \"10001\"\n    },\n    \"updated_at\": \"2026-02-04T10:00:00+00:00\"\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 404,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Site settings not found.\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Admin - Working Days Management",
            "description": "\nAPIs for managing which week days are working days. Only accessible by admin users.\n\nAll routes are prefixed with: \/api\/v1\/admin\/working-day\n\nDay of week: 0=Sunday, 1=Monday, 2=Tuesday, 3=Wednesday, 4=Thursday, 5=Friday, 6=Saturday",
            "item": [
                {
                    "name": "Get working days configuration",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/working-day",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/working-day"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all seven week days with their working\/non-working status.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Working days retrieved successfully\",\"data\":{\"days\":[{\"id\":1,\"day_of_week\":0,\"day_name\":\"Sunday\",\"is_working\":false,\"updated_at\":\"2026-01-29T12:00:00+00:00\"},{\"id\":2,\"day_of_week\":1,\"day_name\":\"Monday\",\"is_working\":true,\"updated_at\":\"2026-01-29T12:00:00+00:00\"}],\"working_day_numbers\":[1,2,3,4,5]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update working days",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/working-day",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/working-day"
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"working_days\":[1,2,3,4,5]}"
                        },
                        "description": "Mark which week days are working. Send an array of day numbers (0-6) that should be working; all others will be set to non-working.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Working days updated successfully\",\"data\":{\"days\":[...],\"working_day_numbers\":[1,2,3,4,5]}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"success\":false,\"message\":\"Validation failed\",\"errors\":{\"working_days\":[\"At least one day selection is required.\"]}}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Update working days",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin\/working-day",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin\/working-day"
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"working_days\":[1,2,3,4,5]}"
                        },
                        "description": "Mark which week days are working. Send an array of day numbers (0-6) that should be working; all others will be set to non-working.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Working days updated successfully\",\"data\":{\"days\":[...],\"working_day_numbers\":[1,2,3,4,5]}}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 422,
                            "body": "{\"success\":false,\"message\":\"Validation failed\",\"errors\":{\"working_days\":[\"At least one day selection is required.\"]}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Working Days (Public)",
            "description": "\nPublic API for reading which week days are working days and their shifts. No authentication required.\n\nAll routes are prefixed with: \/api\/v1\/working-day\n\nDay of week: 0=Sunday, 1=Monday, 2=Tuesday, 3=Wednesday, 4=Thursday, 5=Friday, 6=Saturday",
            "item": [
                {
                    "name": "Get working days configuration with shifts",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/working-day",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/working-day"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Returns all seven week days with their working\/non-working status and the shifts that apply to each day. No auth required.",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\"success\":true,\"message\":\"Working days retrieved successfully\",\"data\":{\"days\":[{\"id\":1,\"day_of_week\":0,\"day_name\":\"Sunday\",\"is_working\":false,\"updated_at\":\"...\",\"shifts\":[]},{\"id\":2,\"day_of_week\":1,\"day_name\":\"Monday\",\"is_working\":true,\"updated_at\":\"...\",\"shifts\":[{\"id\":1,\"name\":\"Morning\",\"start_time\":\"09:00\",\"end_time\":\"17:00\",\"working_day_numbers\":[1,2,3,4,5],\"created_at\":\"...\",\"updated_at\":\"...\"}]}],\"working_day_numbers\":[1,2,3,4,5]}}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Example Routes",
            "description": "\nExample routes demonstrating role-based access control. These are sample endpoints showing how different user roles can access different resources.\n\n<aside>These routes are provided as examples and should be moved to appropriate modules as your application grows.<\/aside>",
            "item": [
                {
                    "name": "Admin Dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/admin-only\/dashboard",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/admin-only\/dashboard"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get admin dashboard data. This endpoint is protected and requires admin role."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Admin dashboard data\",\n  \"data\": {\n    \"admin\": true\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Forbidden - Admin access required\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Staff Dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/staff-only\/dashboard",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/staff-only\/dashboard"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get staff dashboard data. This endpoint is protected and requires staff role."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Staff dashboard data\",\n  \"data\": {\n    \"staff\": true\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Forbidden - Staff access required\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Coach Dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/coach-only\/dashboard",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/coach-only\/dashboard"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get coach dashboard data. This endpoint is protected and requires coach role."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Coach dashboard data\",\n  \"data\": {\n    \"coach\": true\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Forbidden - Coach access required\"\n}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "Customer Dashboard",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer-only\/dashboard",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer-only\/dashboard"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "Get customer dashboard data. This endpoint is protected and requires customer role."
                    },
                    "response": [
                        {
                            "header": [],
                            "code": 200,
                            "body": "{\n  \"success\": true,\n  \"message\": \"Customer dashboard data\",\n  \"data\": {\n    \"customer\": true\n  }\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 401,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Unauthenticated\"\n}",
                            "name": ""
                        },
                        {
                            "header": [],
                            "code": 403,
                            "body": "{\n  \"success\": false,\n  \"message\": \"Forbidden - Customer access required\"\n}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Coach - Enrollment Module Access",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/program\/enrollments\/{enrollmentId}\/modules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/enrollments\/:enrollmentId\/modules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/enrollments\/:enrollmentId\/modules",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PATCH api\/v1\/program\/enrollments\/{enrollmentId}\/modules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/enrollments\/:enrollmentId\/modules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/enrollments\/:enrollmentId\/modules",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"modules\":[{\"program_structure_id\":16,\"is_locked\":false}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/program\/enrollments\/{enrollmentId}\/modules\/{structureId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/enrollments\/:enrollmentId\/modules\/:structureId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/enrollments\/:enrollmentId\/modules\/:structureId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"is_locked\":false}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/program\/enrollments\/{enrollmentId}\/modules\/{structureId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/enrollments\/:enrollmentId\/modules\/:structureId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/enrollments\/:enrollmentId\/modules\/:structureId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"is_locked\":true}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Customer - Enrollment Card Game",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/card-game\/state",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/state",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/state",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/card-game\/question-sets\/{setId}\/questions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/question-sets\/:setId\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/question-sets\/:setId\/questions",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/card-game\/question-sets\/{setId}\/questions\/{questionId}\/answer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/question-sets\/:setId\/questions\/:questionId\/answer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/question-sets\/:setId\/questions\/:questionId\/answer",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"answer_text\":\"b\",\"answer_option\":\"n\",\"answer_options\":[\"g\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/card-game\/question-sets\/{setId}\/questions\/{questionId}\/answer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/question-sets\/:setId\/questions\/:questionId\/answer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/question-sets\/:setId\/questions\/:questionId\/answer",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"answer_text\":\"b\",\"answer_option\":\"n\",\"answer_options\":[\"g\"]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/card-game\/question-sets\/{setId}\/card-selection",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/question-sets\/:setId\/card-selection",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/question-sets\/:setId\/card-selection",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"card_snapshot_ids\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/card-game\/question-sets\/{setId}\/card-selection",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/question-sets\/:setId\/card-selection",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/question-sets\/:setId\/card-selection",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "setId",
                                    "key": "setId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"card_snapshot_ids\":[16]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/card-game\/submit",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/submit",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/card-game\/submit",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Customer - Enrollment Find Your Motivation",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/find-your-motivation\/words",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/find-your-motivation\/words",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/find-your-motivation\/words",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/find-your-motivation\/words\/{wordId}\/guess",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/find-your-motivation\/words\/:wordId\/guess",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/find-your-motivation\/words\/:wordId\/guess",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "wordId",
                                    "key": "wordId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"guess_word\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/find-your-motivation\/words\/{wordId}\/guess",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/find-your-motivation\/words\/:wordId\/guess",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/find-your-motivation\/words\/:wordId\/guess",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "wordId",
                                    "key": "wordId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"guess_word\":\"b\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Customer - Enrollment Goal Settings",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/goal-settings\/goals",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/goal-settings\/goals",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/goal-settings\/goals\/{goalId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "goalId",
                                    "key": "goalId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/goal-settings\/goals\/{goalId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "goalId",
                                    "key": "goalId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/goal-settings\/goals\/{goalId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "goalId",
                                    "key": "goalId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "POST api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/goal-settings\/goals\/{goalId}\/sub-goals",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId\/sub-goals",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId\/sub-goals",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "goalId",
                                    "key": "goalId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/goal-settings\/goals\/{goalId}\/sub-goals\/{subGoalId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId\/sub-goals\/:subGoalId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId\/sub-goals\/:subGoalId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "goalId",
                                    "key": "goalId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "subGoalId",
                                    "key": "subGoalId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/goal-settings\/goals\/{goalId}\/sub-goals\/{subGoalId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId\/sub-goals\/:subGoalId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId\/sub-goals\/:subGoalId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "goalId",
                                    "key": "goalId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "subGoalId",
                                    "key": "subGoalId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/goal-settings\/goals\/{goalId}\/sub-goals\/{subGoalId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId\/sub-goals\/:subGoalId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/goal-settings\/goals\/:goalId\/sub-goals\/:subGoalId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "goalId",
                                    "key": "goalId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "subGoalId",
                                    "key": "subGoalId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Customer - Enrollment Habit Tracker",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/habit-tracker\/state",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/habit-tracker\/state",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/habit-tracker\/state",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/habit-tracker\/habits",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/habit-tracker\/habits",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/habit-tracker\/habits",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PUT api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/habit-tracker\/habits\/{habitId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/habit-tracker\/habits\/:habitId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/habit-tracker\/habits\/:habitId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "habitId",
                                    "key": "habitId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/habit-tracker\/habits\/{habitId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/habit-tracker\/habits\/:habitId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/habit-tracker\/habits\/:habitId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "habitId",
                                    "key": "habitId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "DELETE api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/habit-tracker\/habits\/{habitId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/habit-tracker\/habits\/:habitId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/habit-tracker\/habits\/:habitId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "habitId",
                                    "key": "habitId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Customer - Enrollment Modules",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Customer - Enrollment Questions",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/values\/questions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/values\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/values\/questions",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/values\/questions\/{questionId}\/answer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/values\/questions\/:questionId\/answer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/values\/questions\/:questionId\/answer",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/values\/questions\/{questionId}\/answer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/values\/questions\/:questionId\/answer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/values\/questions\/:questionId\/answer",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/who-am-i\/questions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/who-am-i\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/who-am-i\/questions",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/who-am-i\/questions\/{questionId}\/answer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/who-am-i\/questions\/:questionId\/answer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/who-am-i\/questions\/:questionId\/answer",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/who-am-i\/questions\/{questionId}\/answer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/who-am-i\/questions\/:questionId\/answer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/who-am-i\/questions\/:questionId\/answer",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Customer - Enrollment Upload Documents",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/resources\/upload-documents",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/resources\/upload-documents",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/resources\/upload-documents",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/upload-documents\/resources",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/upload-documents\/resources",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/upload-documents\/resources",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                }
            ]
        },
        {
            "name": "Customer - Enrollment Wheel Of Life",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/wheel-of-life\/elements",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/elements",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/elements",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/wheel-of-life\/ratings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/ratings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/ratings",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ratings\":[{\"element_id\":16,\"id\":16,\"source_element_id\":16,\"rating\":16}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/wheel-of-life\/ratings",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/ratings",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/ratings",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"ratings\":[{\"element_id\":16,\"id\":16,\"source_element_id\":16,\"rating\":16}]}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "GET api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/wheel-of-life\/elements\/{elementId}\/questions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/elements\/:elementId\/questions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/elements\/:elementId\/questions",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "PUT api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/wheel-of-life\/elements\/{elementId}\/questions\/{questionId}\/answer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId\/answer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId\/answer",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                },
                {
                    "name": "PATCH api\/v1\/customer\/enrollments\/{enrollmentId}\/modules\/{structureId}\/wheel-of-life\/elements\/{elementId}\/questions\/{questionId}\/answer",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId\/answer",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/customer\/enrollments\/:enrollmentId\/modules\/:structureId\/wheel-of-life\/elements\/:elementId\/questions\/:questionId\/answer",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "structureId",
                                    "key": "structureId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "elementId",
                                    "key": "elementId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "questionId",
                                    "key": "questionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "PATCH",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        },
        {
            "name": "Endpoints",
            "description": "",
            "item": [
                {
                    "name": "GET api\/v1\/program\/sessions\/calendar",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/sessions\/calendar",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/sessions\/calendar"
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\"from\":\"2026-04-25\",\"to\":\"2052-05-18\",\"timezone\":\"Asia\\\/Ulaanbaatar\"}"
                        },
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/program\/enrollments\/{enrollmentId}\/sessions",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/enrollments\/:enrollmentId\/sessions",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/enrollments\/:enrollmentId\/sessions",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "GET api\/v1\/program\/enrollments\/{enrollmentId}\/sessions\/{sessionId}",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/enrollments\/:enrollmentId\/sessions\/:sessionId",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/enrollments\/:enrollmentId\/sessions\/:sessionId",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "sessionId",
                                    "key": "sessionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": [
                        {
                            "header": [
                                {
                                    "key": "cache-control",
                                    "value": "no-cache, private"
                                },
                                {
                                    "key": "content-type",
                                    "value": "application\/json"
                                },
                                {
                                    "key": "access-control-allow-origin",
                                    "value": "*"
                                }
                            ],
                            "code": 401,
                            "body": "{\"success\":false,\"message\":\"Unauthenticated\"}",
                            "name": ""
                        }
                    ]
                },
                {
                    "name": "POST api\/v1\/program\/enrollments\/{enrollmentId}\/sessions\/{sessionId}\/video-token",
                    "request": {
                        "url": {
                            "host": "{{baseUrl}}",
                            "path": "api\/v1\/program\/enrollments\/:enrollmentId\/sessions\/:sessionId\/video-token",
                            "query": [],
                            "raw": "{{baseUrl}}\/api\/v1\/program\/enrollments\/:enrollmentId\/sessions\/:sessionId\/video-token",
                            "variable": [
                                {
                                    "id": "enrollmentId",
                                    "key": "enrollmentId",
                                    "value": "architecto",
                                    "description": ""
                                },
                                {
                                    "id": "sessionId",
                                    "key": "sessionId",
                                    "value": "architecto",
                                    "description": ""
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": null,
                        "description": "",
                        "auth": {
                            "type": "noauth"
                        }
                    },
                    "response": []
                }
            ]
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "Authorization",
                "type": "string"
            }
        ]
    }
}