Skip to main content
PUT
/
api
/
orchestration
/
fabric
/
{fabricId}
Update an existing fabric
curl --request PUT \
  --url https://app.prophecy.io/api/orchestration/fabric/{fabricId} \
  --header 'Content-Type: application/json' \
  --header 'X-AUTH-TOKEN: <x-auth-token>' \
  --data '
{
  "name": "API_fabric_test_update"
}
'
{
  "success": true,
  "data": {
    "id": "10740"
  }
}
Only the name and description of the fabric can be updated.

Headers

X-AUTH-TOKEN
string
required

Prophecy authentication token. Required for all API requests.

Path Parameters

fabricId
string
required

The unique ID of the fabric

Body

application/json

Fabric object with updated fields. Only name and description can be modified.

name
string

The name of the fabric.

description
string

The description of the fabric.

Response

200 - application/json

Fabric updated successfully

success
enum<boolean>
required

Indicates the request was successful.

Available options:
true,
false
data
object
required

Response data containing the fabric ID.