Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/user-manual/api/project-export.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ The request will start an export job and the job details will be returned in the
## Example

```none
curl -H "Authorization: Bearer {accessToken}" -H "Content-Type: application/json" -X POST -d '{"branch_id": "99999999-9999-9999-9999-999999999999"}' "https://playcanvas.com/api/projects/{projectId}/export"
curl -H "Authorization: Bearer {accessToken}" -H "Content-Type: application/json" -X POST -d '{"branch_id": "99999999-9999-9999-9999-999999999999"}' "https://playcanvas.com/api/projects/{id}/export"
```

## Parameters

| Name | Type | Required | Description |
| ----------- | -------- | :------: | -------------------------------------------------------------------------- |
| `projectId` | `number` | ✔️ | The id of the project. |
| `id` | `number` | ✔️ | The id of the project. |
| `branch_id` | `string` | | The id of the branch. If no id is specified, the main branch will be used. |

## Response Schema
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ POST https://playcanvas.com/api/projects/:id/export
## 例

```none
curl -H "Authorization: Bearer {accessToken}" -H "Content-Type: application/json" -X POST -d '{"branch_id": "99999999-9999-9999-9999-999999999999"}' "https://playcanvas.com/api/projects/{projectId}/export"
curl -H "Authorization: Bearer {accessToken}" -H "Content-Type: application/json" -X POST -d '{"branch_id": "99999999-9999-9999-9999-999999999999"}' "https://playcanvas.com/api/projects/{id}/export"
```

## パラメーター

| 名前 | タイプ | Required | 説明 |
| ----------- | -------- | :------: | -------------------------------------------------------------------------- |
| `projectId` | `number` | ✔️ | The id of the project. |
| `id` | `number` | ✔️ | The id of the project. |
| `branch_id` | `string` | | The id of the branch. If no id is specified, the main branch will be used. |

## レスポンススキーマ
Expand Down