{
	"info": {
		"_postman_id": "a98ef94c-ca36-40a7-8540-d8dab8fa2c1a",
		"name": "Lessonspace API",
		"description": "This Postman collection lets you experiment with the REST endpoints available for interacting with the Lessonspace API. These endpoints operate on live data.\n\nPlease note that endpoint implementations may drift over time. While every effort is made to keep this collection in sync, you should always confirm with [the most current live documentation](https://www.thelessonspace.com/docs) when doing a technical integration.\n\n_Last updated: October 2025_",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "26770833"
	},
	"item": [
		{
			"name": "Fetch Spaces / Sessions",
			"item": [
				{
					"name": "Fetch Bulk Sessions",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://api.thelessonspace.com/v2/organisations/{{organisation}}/sessions/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"organisations",
								"{{organisation}}",
								"sessions",
								""
							],
							"query": [
								{
									"key": "search",
									"value": null,
									"description": "If a UUID, filters to sessions or spaces with a matching slug. Otherwise, filters to sessions or spaces with a partial, case-insensitive match on the name.",
									"disabled": true
								},
								{
									"key": "include_single_user",
									"value": null,
									"description": "Include sessions with only one user.",
									"disabled": true
								},
								{
									"key": "date_before",
									"value": null,
									"description": "Filter to sessions created after the specified ISO8601 timestamp.",
									"disabled": true
								},
								{
									"key": "date_after",
									"value": null,
									"description": "Filter sessions created before the specified ISO8601 timestamp.",
									"disabled": true
								},
								{
									"key": "space",
									"value": null,
									"description": "Filter to sessions linked to the provided space UUID(s). Accepts multiple values, delimited by `&`.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Fetch Single Session",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://api.thelessonspace.com/v2/organisations/{{organisation}}/sessions/{{session}}/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"organisations",
								"{{organisation}}",
								"sessions",
								"{{session}}",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Fetch Bulk Spaces",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://api.thelessonspace.com/v2/organisations/{{organisation}}/spaces/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"organisations",
								"{{organisation}}",
								"spaces",
								""
							],
							"query": [
								{
									"key": "search",
									"value": null,
									"disabled": true
								},
								{
									"key": "session",
									"value": null,
									"description": "The ID(s) of sessions to filter by. Accepts multiple values.",
									"disabled": true
								},
								{
									"key": "date_before",
									"value": null,
									"description": "Filter to spaces with sessions that started before the specified ISO8601 timestamp.",
									"disabled": true
								},
								{
									"key": "date_after",
									"value": null,
									"description": "Filter to spaces with sessions that ended after the specified ISO8601 timestamp.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Fetch Sessions for Space",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/{{space}}/sessions/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"{{space}}",
								"sessions",
								""
							],
							"query": [
								{
									"key": "search",
									"value": null,
									"description": "If a UUID, filters to sessions or spaces with a matching slug. Otherwise, filters to sessions or spaces with a partial, case-insensitive match on the name.",
									"disabled": true
								},
								{
									"key": "include_single_user",
									"value": null,
									"description": "Include sessions with only one user.",
									"disabled": true
								},
								{
									"key": "date_before",
									"value": null,
									"description": "Filter to sessions created after the specified ISO8601 timestamp.",
									"disabled": true
								},
								{
									"key": "date_after",
									"value": null,
									"description": "Filter sessions created before the specified ISO8601 timestamp.",
									"disabled": true
								},
								{
									"key": "space",
									"value": null,
									"description": "Filter to sessions linked to the provided space UUID(s). Accepts multiple values, delimited by `&`.",
									"disabled": true
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Create Space / Create Users",
			"item": [
				{
					"name": "Create Space",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"connection": true,
							"content-type": true,
							"user-agent": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"id\": \"space 1\"}"
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "Creates a space with the specified ID. Repeated calls will not create duplicate spaces, they will instead just update the same space."
					},
					"response": []
				},
				{
					"name": "Create Named Users",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": \"space 1\",\n    \"user\": {\n        \"name\": \"Alice\"\n    }\n}"
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "Creates a given user alongside the space. Repeated calls will use the name as a unique identifier and generate links for that same user. Sending a different name will associate with a different user."
					},
					"response": []
				},
				{
					"name": "Create User with ID",
					"request": {
						"method": "POST",
						"header": [],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": \"space 1\",\n    \"user\": {\n        \"id\": \"student-1\",\n        \"name\": \"Billy\"\n    }\n}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "Providing an ID alongside other user details will use the ID as the unique identifier for the user, allowing the name to be changed later without associating it to a new user."
					},
					"response": []
				},
				{
					"name": "Create Leader User",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": \"space 1\",\n    \"user\": {\n        \"name\": \"Alice\",\n        \"leader\": true\n    }\n}"
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "Leaders are tutors, teachers or lecturers. They have administrative control inside the space (depending on what features you may allow or deny otherwise)."
					},
					"response": []
				}
			]
		},
		{
			"name": "Generate Links with Features",
			"item": [
				{
					"name": "Enable/Disable Features",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": \"space 1\",\n    \"features\": {\n        \"chat.enabled\": true,\n        \"import.zip\": false\n    }\n}"
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "Features can be forced on or off for a link using the \"features\" object. A full list of available features can be found here: [https://thelessonspace.com/docs/guide/space-config](http://localhost:4000/docs/guide/space-config)"
					},
					"response": []
				}
			],
			"description": "Full list of available features: [https://www.thelessonspace.com/docs/guide/space-config#features](http://localhost:4000/docs/guide/space-config#features)"
		},
		{
			"name": "Generate Links with Restrictions",
			"item": [
				{
					"name": "Create Single Use Link",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": \"space 1\",\n    \"user\": {\n        \"name\": \"Alice\",\n        \"single_use\": true\n    }\n}"
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "Single-use links can only be used once ever. Once used, any attempts to reuse the link will be rejected."
					},
					"response": []
				},
				{
					"name": "Create Single Use Session",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": \"space 1\",\n    \"user\": {\n        \"name\": \"Alice\",\n        \"session_limit\": true\n    }\n}"
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "Session limits are a less-restrictive form of single-use link. Session-limited links are restricted to the session whose ID is returned in the response. This might be an ongoing session, or the ID of the next session to be run. As long as that session is running, the link may be used repeatedly to join. However as soon as the session ends, any attempt to use it to join subsequent sessions will fail."
					},
					"response": []
				},
				{
					"name": "Create Time Restricted Link",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": \"space 1\",\n    \"user\" : {\n        \"name\": \"Alice\"\n    },\n    \"timeouts\" : {\n        \"not_before\": \"2025-01-01T18:00\",\n        \"not_after\": \"2025-01-01T19:00\"\n    }\n}"
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "The link generated from this call will only be valid for the time period prescribed by the two timestamps. The timestamps will be interpreted as ISO8601 format."
					},
					"response": []
				},
				{
					"name": "Create Link with auto-kick on expiry",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\":\"space 1\",\n    \"user\": {\n        \"name\": \"Alice\",\n        \"custom_jwt_parameters\": {\n            \"kickOnExp\": true\n        }\n    },\n    \"timeouts\": {\n        \"not_after\": \"2025-01-01T19:00\"\n    }      \n}"
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "Providing the \"kickOnExp\" value as true will make the user be forcibly kicked from the session when the \"not_after\" time is reached."
					},
					"response": []
				},
				{
					"name": "Create Link with soft and hard time limit",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\":\"space 1\",\n    \"user\": {\n        \"name\": \"Alice\",\n        \"leader\": true,\n        \"custom_jwt_parameters\": {\n            \"softExp\": 1735750500\n        }\n    },\n    \"timeouts\": {\n        \"not_after\": \"2025-01-01T19:00\"\n    }      \n}"
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "If \"softExp\" is provided and the user is a leader, they will be prompted about the lesson ending. They will have the option to extend the soft expiry by ten minutes. If the \"not_after\" value is also provided, the soft expiry cannot be extended past that time."
					},
					"response": []
				}
			]
		},
		{
			"name": "Get Session Recording URL",
			"item": [
				{
					"name": "Using Session ID",
					"protocolProfileBehavior": {
						"disableBodyPruning": true,
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/sessions/{{session}}/playback/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"sessions",
								"{{session}}",
								"playback",
								""
							],
							"query": [
								{
									"key": "",
									"value": null,
									"disabled": true
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Fetch in Bulk Using Query Parameters",
					"protocolProfileBehavior": {
						"disableBodyPruning": true,
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": ""
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/organisations/{{organisation}}/sessions/{{session}}",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"organisations",
								"{{organisation}}",
								"sessions",
								"{{session}}"
							],
							"query": [
								{
									"key": "start_time_after",
									"value": "2022-06-03T12:00",
									"description": "Filters session(s) that started after the passed in datetime in ISO8601 datetime format",
									"disabled": true
								},
								{
									"key": "start_time_before",
									"value": "2022-08-03T12:00",
									"description": "Filters session(s) that started before the passed in datetime in ISO8601 datetime format",
									"disabled": true
								},
								{
									"key": "launch_id",
									"value": null,
									"description": "Launch endpoint ID of the space to filter by",
									"disabled": true
								},
								{
									"key": "search",
									"value": "",
									"description": "search for a session using the session uuid",
									"disabled": true
								},
								{
									"key": "space",
									"value": "e2c8e8a0-2610-463e-84bd-ba05d14a5fcd",
									"description": "The slug of the space (a UUID) that the session took place in. Accepts multiple values, separated with an '&' symbol .",
									"disabled": true
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Recipes",
			"item": [
				{
					"name": "Spectator mode",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": \"space 1\",\n    \"features\": {\n        \"lobby.enabled\": false,\n        \"av.publishing\": false\n\t}\n}"
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "You can generate a link to a Space so that a user will have their AV disabled within the Space. They can see the videos of other participants and interact with the Space contents and chat as normal, but their own video feed is not broadcasted.  \n  \nSince there is a limit of 10 AV publishers in a Space, this feature can be used to prioritize the AV of some users over others."
					},
					"response": []
				},
				{
					"name": "Redirecting on session end",
					"protocolProfileBehavior": {
						"disabledSystemHeaders": {
							"user-agent": true,
							"connection": true,
							"content-type": true,
							"accept-encoding": true
						}
					},
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"warning": "This is a duplicate header and will be overridden by the Authorization header generated by Postman.",
								"key": "Authorization",
								"value": "Organisation {{API_KEY}}",
								"type": "default"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": \"space 1\",\n    \"holodeck_parameters\": {\n        \"customCloseUrl\": \"http://mywebsite.com\",\n        \"customCloseName\": \"Back to My Website\",\n        \"customCloseAutomatic\": \"true\"\n    }\n}"
						},
						"url": {
							"raw": "https://api.thelessonspace.com/v2/spaces/launch/",
							"protocol": "https",
							"host": [
								"api",
								"thelessonspace",
								"com"
							],
							"path": [
								"v2",
								"spaces",
								"launch",
								""
							]
						},
						"description": "Should you wish to, you can add URL parameters to redirect a user to a specific URL when a session ends. This can be useful if you want to redirect a user back to your website after a session.\n\nThis can be achieved by providing `holodeck_parameters` when calling the API. The parameter is a JSON object with 3 keys:\n\n\\- `customCloseUrl` is the URL you want the user to be redirected to.  \n\\- `customCloseName` is the phrase to be displayed on the button.  \n\\- `customCloseAutomatic` is a boolean that controls whether the user will be redirected automatically after the end of the session (without needing to click the button). Note that this value, if provided, must be a \\*string\\*, not a boolean."
					},
					"response": []
				}
			]
		},
		{
			"name": "Get Organisation Details",
			"protocolProfileBehavior": {
				"disableBodyPruning": true,
				"disabledSystemHeaders": {
					"connection": true,
					"content-type": true,
					"user-agent": true,
					"accept-encoding": true
				}
			},
			"request": {
				"method": "GET",
				"header": [
					{
						"key": "Authorization",
						"value": "Organisation {{API_KEY}}",
						"type": "default"
					}
				],
				"body": {
					"mode": "raw",
					"raw": ""
				},
				"url": {
					"raw": "https://api.thelessonspace.com/v2/my-organisation/",
					"protocol": "https",
					"host": [
						"api",
						"thelessonspace",
						"com"
					],
					"path": [
						"v2",
						"my-organisation",
						""
					]
				},
				"description": "Will return details of your organisation."
			},
			"response": []
		},
		{
			"name": "Fetch Lesson Transcript",
			"request": {
				"method": "GET",
				"header": [],
				"url": {
					"raw": "https://api.thelessonspace.com/v2/organisations/{{organisation}}/sessions/{{session}}/transcript/",
					"protocol": "https",
					"host": [
						"api",
						"thelessonspace",
						"com"
					],
					"path": [
						"v2",
						"organisations",
						"{{organisation}}",
						"sessions",
						"{{session}}",
						"transcript",
						""
					]
				}
			},
			"response": []
		},
		{
			"name": "Delete User from Organisation",
			"request": {
				"method": "DELETE",
				"header": [],
				"url": {
					"raw": "https://api.thelessonspace.com/v2/organisations/{{organisation}}/users/{{user}}/",
					"protocol": "https",
					"host": [
						"api",
						"thelessonspace",
						"com"
					],
					"path": [
						"v2",
						"organisations",
						"{{organisation}}",
						"users",
						"{{user}}",
						""
					]
				}
			},
			"response": []
		}
	],
	"auth": {
		"type": "apikey",
		"apikey": [
			{
				"key": "key",
				"value": "Authorization",
				"type": "string"
			},
			{
				"key": "value",
				"value": "Organisation {{API_KEY}}",
				"type": "string"
			}
		]
	},
	"event": [
		{
			"listen": "prerequest",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		},
		{
			"listen": "test",
			"script": {
				"type": "text/javascript",
				"exec": [
					""
				]
			}
		}
	]
}