Skip to content

Commit

Permalink
Merge pull request #55 from scinote-eln/aj_SCI_11349
Browse files Browse the repository at this point in the history
Fix incorrect opening of sections [SCI-11349]
  • Loading branch information
andrej-scinote authored Dec 3, 2024
2 parents 9433372 + e1c9861 commit 24e7ff1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion source/includes/_inventory_item_child_relationships.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ This endpoint creates a new child relationship with selected inventory item, ide
- __403 Forbidden:__ User does not have manage permission.
- __404 Not Found:__ Specified inventory item not found.

## Delete Inventory Item Relationship
## Delete Inventory Item Child Relationship

```shell
curl -X DELETE \
Expand Down
2 changes: 1 addition & 1 deletion source/includes/_inventory_item_parent_relationships.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ This endpoint creates a new parent relationship with selected inventory item, id
- __403 Forbidden:__ User does not have manage permission.
- __404 Not Found:__ Specified inventory item not found.

## Delete Inventory Item Relationship
## Delete Inventory Item Parent Relationship

```shell
curl -X DELETE \
Expand Down
6 changes: 3 additions & 3 deletions source/includes/_result_attachments_v2.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Result Attachments V2

## Get Attachments
## Get Result Attachments

```shell
curl "https://<server-name>/api/v2/teams/1/projects/1/experiments/1/tasks/1/results/1/attachments"
Expand Down Expand Up @@ -92,7 +92,7 @@ EXPERIMENT_ID | The ID of the experiment to retrieve task from
TASK_ID | The ID of the task to retrieve protocol from
RESULT_ID | The ID of the result to retrieve attachments from

## Get Attachment
## Get Result Attachment

```shell
curl "https://<server-name>/api/v2/teams/1/projects/1/experiments/1/tasks/1/results/1/attachments/1"
Expand Down Expand Up @@ -142,7 +142,7 @@ TASK_ID | The ID of the task to retrieve protocol from
RESULT_ID | The ID of the result to retrieve attachment from
ID | The ID of the attachment

## Create Attachment
## Create Result Attachment

```shell
curl -X POST \
Expand Down
10 changes: 5 additions & 5 deletions source/includes/_result_tables_v2.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Result tables V2

## Get Tables
## Get Result Tables

```shell
curl "https://<server-name>/api/v2/teams/1/projects/1/experiments/1/tasks/1/results/1/tables"
Expand Down Expand Up @@ -76,7 +76,7 @@ This endpoint retrieves tables from specific result.
| FROM | If present will filter result tables corresponding timestamp above or equals value |
| TO | If present will filter result tables corresponding timestamp below or equals value |

## Get Table
## Get Result Table

```shell
curl "https://<server-name>/api/v2/teams/1/projects/1/experiments/1/tasks/1/results/1/tables/1"
Expand Down Expand Up @@ -126,7 +126,7 @@ This endpoint retrieves specific table from the result.
| RESULT_ID | The ID of the result to retrieve table from |
| ID | The ID of the table |

## Create Table
## Create Result Table

```shell
curl -X POST \
Expand Down Expand Up @@ -225,7 +225,7 @@ This endpoint creates new table in the result.
| contents | no | Serialized JSON representation of the table data |
| metadata | no | JSON representation of the table metadata. `cells` represent the alignment of the specific table cell. Available `className` are `htCenter`, `htRight`, `htLeft`, `htJustify` for horizontal alignment, and `htTop`, `htMiddle`, `htBottom` for vertical alignment. `plateTemplate` field mark if table is a plate template |

## Update Table
## Update Result Table

```shell
curl -X PATCH \
Expand Down Expand Up @@ -327,7 +327,7 @@ If submitted attributes are the same and no changes are made for the table, serv
| contents | no | Serialized JSON representation of the table data |
| metadata | no | JSON representation of the table metadata. `cells` represent the alignment of the specific table cell. Available `className` are `htCenter`, `htRight`, `htLeft`, `htJustify` for horizontal alignment, and `htTop`, `htMiddle`, `htBottom` for vertical alignment. `plateTemplate` field mark if table is a plate template |

## Delete Table
## Delete Result Table

```shell
curl -X DELETE \
Expand Down

0 comments on commit 24e7ff1

Please sign in to comment.