> For the complete documentation index, see [llms.txt](https://docs.geosamples.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.geosamples.org/api/launch-platforms.md).

# Launch Platforms

## List launch platforms

> Paginated launch platforms for the current user: personal by default, team-scoped when \`team\_id\` is set, or SESAR-code–scoped when \`sesar\_code\` is set. Optional \`query\` filters by label, description, or normalized label.

```json
{"openapi":"3.0.3","info":{"title":"SESAR API","version":"1.0.0"},"security":[{"tokenAuth":[]},{"jwtAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"type":"apiKey","in":"header","name":"Authorization","description":"Token-based authentication with required prefix \"Token\""},"jwtAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"PaginatedLaunchPlatformListPaginationList":{"type":"object","required":["count","results"],"properties":{"count":{"type":"integer"},"next":{"type":"string","nullable":true,"format":"uri"},"previous":{"type":"string","nullable":true,"format":"uri"},"results":{"type":"array","items":{"$ref":"#/components/schemas/LaunchPlatformListPagination"}}}},"LaunchPlatformListPagination":{"type":"object","properties":{"count":{"type":"integer"},"next":{"type":"string","nullable":true},"previous":{"type":"string","nullable":true},"data":{"type":"array","items":{"$ref":"#/components/schemas/LaunchPlatform"}},"page_size":{"type":"integer"},"current_page":{"type":"integer"},"total_pages":{"type":"integer","nullable":true}},"required":["count","data"]},"LaunchPlatform":{"type":"object","properties":{"id":{"type":"integer","readOnly":true},"label":{"type":"string","nullable":true,"maxLength":100},"norm_label":{"type":"string","nullable":true,"maxLength":100},"description":{"type":"string","nullable":true},"host_platform_id":{"type":"integer","maximum":2147483647,"minimum":-2147483648,"nullable":true},"launch_type":{"type":"string","readOnly":true},"launch_type_id":{"type":"integer","nullable":true},"operator":{"type":"string","readOnly":true},"operator_id":{"type":"integer","nullable":true},"date_commissioned":{"type":"string","format":"date","nullable":true},"user_owner":{"type":"integer","readOnly":true,"nullable":true},"team_owner":{"type":"integer","readOnly":true,"nullable":true}},"required":["id","launch_type","operator","team_owner","user_owner"]}}},"paths":{"/api/launch-platforms/":{"get":{"operationId":"launch_platforms_list","description":"Paginated launch platforms for the current user: personal by default, team-scoped when `team_id` is set, or SESAR-code–scoped when `sesar_code` is set. Optional `query` filters by label, description, or normalized label.","summary":"List launch platforms","parameters":[{"in":"query","name":"ordering","schema":{"type":"string"},"description":"Sort field; prefix with `-` for descending. Allowed: id, label, date_commissioned."},{"in":"query","name":"page","schema":{"type":"integer"},"description":"Page number (1-based)."},{"in":"query","name":"page_size","schema":{"type":"integer"},"description":"Items per page (max 2000)."},{"in":"query","name":"query","schema":{"type":"string"},"description":"Substring filter on label, description, and norm_label."},{"in":"query","name":"sesar_code","schema":{"type":"string"},"description":"When set, scope list to this SESAR code (view_launchplatform permission)."},{"in":"query","name":"team_id","schema":{"type":"integer"},"description":"When set, list launch platforms for this team (membership required)."}],"tags":["Launch platforms"],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PaginatedLaunchPlatformListPaginationList"}}},"description":""}}}}}}
```

## Create launch platform

> Creates a launch platform. Ownership determined by either: team\_owner\_id explicitly set in body, or defaults to the current user.

```json
{"openapi":"3.0.3","info":{"title":"SESAR API","version":"1.0.0"},"security":[{"tokenAuth":[]},{"jwtAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"type":"apiKey","in":"header","name":"Authorization","description":"Token-based authentication with required prefix \"Token\""},"jwtAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"LaunchPlatform":{"type":"object","properties":{"id":{"type":"integer","readOnly":true},"label":{"type":"string","nullable":true,"maxLength":100},"norm_label":{"type":"string","nullable":true,"maxLength":100},"description":{"type":"string","nullable":true},"host_platform_id":{"type":"integer","maximum":2147483647,"minimum":-2147483648,"nullable":true},"launch_type":{"type":"string","readOnly":true},"launch_type_id":{"type":"integer","nullable":true},"operator":{"type":"string","readOnly":true},"operator_id":{"type":"integer","nullable":true},"date_commissioned":{"type":"string","format":"date","nullable":true},"user_owner":{"type":"integer","readOnly":true,"nullable":true},"team_owner":{"type":"integer","readOnly":true,"nullable":true}},"required":["id","launch_type","operator","team_owner","user_owner"]},"LaunchPlatformCreateSuccessResponse":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/LaunchPlatform"}},"required":["data"]}}},"paths":{"/api/launch-platforms/":{"post":{"operationId":"launch_platforms_create","description":"Creates a launch platform. Ownership determined by either: team_owner_id explicitly set in body, or defaults to the current user.","summary":"Create launch platform","tags":["Launch platforms"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LaunchPlatform"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/LaunchPlatform"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/LaunchPlatform"}}}},"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LaunchPlatformCreateSuccessResponse"}}},"description":""}}}}}}
```

## GET /api/launch-platforms/{id}/

> Retrieve launch platform

```json
{"openapi":"3.0.3","info":{"title":"SESAR API","version":"1.0.0"},"security":[{"tokenAuth":[]},{"jwtAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"type":"apiKey","in":"header","name":"Authorization","description":"Token-based authentication with required prefix \"Token\""},"jwtAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"LaunchPlatformDetailSuccessResponse":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/LaunchPlatform"}},"required":["data"]},"LaunchPlatform":{"type":"object","properties":{"id":{"type":"integer","readOnly":true},"label":{"type":"string","nullable":true,"maxLength":100},"norm_label":{"type":"string","nullable":true,"maxLength":100},"description":{"type":"string","nullable":true},"host_platform_id":{"type":"integer","maximum":2147483647,"minimum":-2147483648,"nullable":true},"launch_type":{"type":"string","readOnly":true},"launch_type_id":{"type":"integer","nullable":true},"operator":{"type":"string","readOnly":true},"operator_id":{"type":"integer","nullable":true},"date_commissioned":{"type":"string","format":"date","nullable":true},"user_owner":{"type":"integer","readOnly":true,"nullable":true},"team_owner":{"type":"integer","readOnly":true,"nullable":true}},"required":["id","launch_type","operator","team_owner","user_owner"]}}},"paths":{"/api/launch-platforms/{id}/":{"get":{"operationId":"launch_platforms_retrieve","summary":"Retrieve launch platform","parameters":[{"in":"path","name":"id","schema":{"type":"integer"},"required":true}],"tags":["Launch platforms"],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LaunchPlatformDetailSuccessResponse"}}},"description":""},"404":{"description":"Launch platform id not found."}}}}}}
```

## DELETE /api/launch-platforms/{id}/

> Delete launch platform

```json
{"openapi":"3.0.3","info":{"title":"SESAR API","version":"1.0.0"},"security":[{"tokenAuth":[]},{"jwtAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"type":"apiKey","in":"header","name":"Authorization","description":"Token-based authentication with required prefix \"Token\""},"jwtAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"LaunchPlatformDeleteSuccessResponse":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/LaunchPlatformDeleteSuccessData"}},"required":["data"]},"LaunchPlatformDeleteSuccessData":{"type":"object","properties":{"success":{"type":"boolean"}},"required":["success"]}}},"paths":{"/api/launch-platforms/{id}/":{"delete":{"operationId":"launch_platforms_destroy","summary":"Delete launch platform","parameters":[{"in":"path","name":"id","schema":{"type":"integer"},"required":true}],"tags":["Launch platforms"],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LaunchPlatformDeleteSuccessResponse"}}},"description":""},"404":{"description":"Launch platform id not found."}}}}}}
```

## PATCH /api/launch-platforms/{id}/

> Update launch platform

```json
{"openapi":"3.0.3","info":{"title":"SESAR API","version":"1.0.0"},"security":[{"tokenAuth":[]},{"jwtAuth":[]}],"components":{"securitySchemes":{"tokenAuth":{"type":"apiKey","in":"header","name":"Authorization","description":"Token-based authentication with required prefix \"Token\""},"jwtAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"PatchedLaunchPlatform":{"type":"object","properties":{"id":{"type":"integer","readOnly":true},"label":{"type":"string","nullable":true,"maxLength":100},"norm_label":{"type":"string","nullable":true,"maxLength":100},"description":{"type":"string","nullable":true},"host_platform_id":{"type":"integer","maximum":2147483647,"minimum":-2147483648,"nullable":true},"launch_type":{"type":"string","readOnly":true},"launch_type_id":{"type":"integer","nullable":true},"operator":{"type":"string","readOnly":true},"operator_id":{"type":"integer","nullable":true},"date_commissioned":{"type":"string","format":"date","nullable":true},"user_owner":{"type":"integer","readOnly":true,"nullable":true},"team_owner":{"type":"integer","readOnly":true,"nullable":true}}},"LaunchPlatformUpdateSuccessResponse":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/LaunchPlatform"}},"required":["data"]},"LaunchPlatform":{"type":"object","properties":{"id":{"type":"integer","readOnly":true},"label":{"type":"string","nullable":true,"maxLength":100},"norm_label":{"type":"string","nullable":true,"maxLength":100},"description":{"type":"string","nullable":true},"host_platform_id":{"type":"integer","maximum":2147483647,"minimum":-2147483648,"nullable":true},"launch_type":{"type":"string","readOnly":true},"launch_type_id":{"type":"integer","nullable":true},"operator":{"type":"string","readOnly":true},"operator_id":{"type":"integer","nullable":true},"date_commissioned":{"type":"string","format":"date","nullable":true},"user_owner":{"type":"integer","readOnly":true,"nullable":true},"team_owner":{"type":"integer","readOnly":true,"nullable":true}},"required":["id","launch_type","operator","team_owner","user_owner"]}}},"paths":{"/api/launch-platforms/{id}/":{"patch":{"operationId":"launch_platforms_partial_update","summary":"Update launch platform","parameters":[{"in":"path","name":"id","schema":{"type":"integer"},"required":true}],"tags":["Launch platforms"],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/PatchedLaunchPlatform"}},"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/PatchedLaunchPlatform"}},"multipart/form-data":{"schema":{"$ref":"#/components/schemas/PatchedLaunchPlatform"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LaunchPlatformUpdateSuccessResponse"}}},"description":""},"404":{"description":"Launch platform id not found."}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.geosamples.org/api/launch-platforms.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
