Assembly Instruction Step Slide

The assembly instruction step slide resource.

Basehttps://rest.carbon.ms/assemblyInstructionStepSlide
GET/assemblyInstructionStepSlide

List assembly instruction step slides

Retrieve a paginated list of assembly instruction step slides. Filter, order, and select columns with PostgREST query parameters.

Query parameters

selectstring

Comma-separated columns to return. Defaults to all.

orderstring

Column to sort by, e.g. `createdAt.desc`.

limitinteger

Maximum rows to return.

offsetinteger

Rows to skip, for pagination.

GEThttps://rest.carbon.ms/assemblyInstructionStepSlide
curl --request GET \
  --url 'https://rest.carbon.ms/assemblyInstructionStepSlide?select=*&limit=10' \
  --header 'Authorization: Bearer <api-key>'
Response
[
  {
    "id": "abc123def456",
    "stepId": "xyz789",
    "sortOrder": 0,
    "size": "string",
    "annotations": "string",
    "companyId": "xyz789",
    "createdBy": "string",
    "createdAt": "2026-01-01T00:00:00Z"
  }
]
GET/assemblyInstructionStepSlide

Retrieve a assembly instruction step slide

Fetch a single assembly instruction step slide by filtering on `id`.

Query parameters

idstring

Match on the assembly instruction step slide's `id`, e.g. `eq.{id}`.

GEThttps://rest.carbon.ms/assemblyInstructionStepSlide
curl --request GET \
  --url 'https://rest.carbon.ms/assemblyInstructionStepSlide?id=eq.%7Bid%7D' \
  --header 'Authorization: Bearer <api-key>'
Response
{
  "id": "abc123def456",
  "stepId": "xyz789",
  "sortOrder": 0,
  "size": "string",
  "annotations": "string",
  "companyId": "xyz789",
  "createdBy": "string",
  "createdAt": "2026-01-01T00:00:00Z"
}
POST/assemblyInstructionStepSlide

Create a assembly instruction step slide

Create a new assembly instruction step slide.

Body parameters

stepIdstringrequired

References assemblyInstructionStep.id

imagePathstring
modelUploadIdstring

References modelUpload.id

captionstring
sortOrdernumberrequired
sizestringrequired
annotationsobjectrequired
companyIdstringrequired

References company.id

POSThttps://rest.carbon.ms/assemblyInstructionStepSlide
curl --request POST \
  --url https://rest.carbon.ms/assemblyInstructionStepSlide \
  --header 'Authorization: Bearer <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'Prefer: return=representation' \
  --data '{"stepId":"xyz789","sortOrder":0,"size":"string","annotations":"string","companyId":"xyz789"}'
Response
{
  "id": "abc123def456",
  "stepId": "xyz789",
  "sortOrder": 0,
  "size": "string",
  "annotations": "string",
  "companyId": "xyz789",
  "createdBy": "string",
  "createdAt": "2026-01-01T00:00:00Z"
}
PATCH/assemblyInstructionStepSlide

Update a assembly instruction step slide

Update an existing assembly instruction step slide, matched on `id`.

Body parameters

stepIdstringrequired

References assemblyInstructionStep.id

imagePathstring
modelUploadIdstring

References modelUpload.id

captionstring
sortOrdernumberrequired
sizestringrequired
annotationsobjectrequired
companyIdstringrequired

References company.id

PATCHhttps://rest.carbon.ms/assemblyInstructionStepSlide
curl --request PATCH \
  --url 'https://rest.carbon.ms/assemblyInstructionStepSlide?id=eq.%7Bid%7D' \
  --header 'Authorization: Bearer <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'Prefer: return=representation' \
  --data '{"stepId":"xyz789"}'
Response
{
  "id": "abc123def456",
  "stepId": "xyz789",
  "sortOrder": 0,
  "size": "string",
  "annotations": "string",
  "companyId": "xyz789",
  "createdBy": "string",
  "createdAt": "2026-01-01T00:00:00Z"
}
DELETE/assemblyInstructionStepSlide

Delete a assembly instruction step slide

Delete a assembly instruction step slide, matched on `id`. Returns 204 No Content.

Query parameters

idstring

The `id` of the assembly instruction step slide to delete, e.g. `eq.{id}`.

DELETEhttps://rest.carbon.ms/assemblyInstructionStepSlide
curl --request DELETE \
  --url 'https://rest.carbon.ms/assemblyInstructionStepSlide?id=eq.%7Bid%7D' \
  --header 'Authorization: Bearer <api-key>'
204 No Content