Skip to content
  • Auto
  • Light
  • Dark
Get Started

Update

Update Manually Managed Resource Type
post/api/v1/apps/{app_id}/resource_types/{id}

Invokes the c1.api.app.v1.AppResourceTypeService.UpdateManuallyManagedResourceType method.

Path Parameters
app_idstring

The ID of the app that is associated with the app resource type

idstring

The unique ID for the app resource type.

Body Parameters
appResourceTypeidstringappIdstringcreatedAtstringdeletedAtstringdisplayNamestringtraitIdsarray of stringupdatedAtstringC1APIAppV1AppResourceType
optional

The AppResourceType is referenced by an app entitlement defining its resource types. Commonly things like Group or Role.

updateMaskstring
optional
Returns
appResourceTypeidstringappIdstringcreatedAtstringdeletedAtstringdisplayNamestringtraitIdsarray of stringupdatedAtstringC1APIAppV1AppResourceType
optional

The AppResourceType is referenced by an app entitlement defining its resource types. Commonly things like Group or Role.

expandedarray of object
optional

The expanded field.

Hide ParametersShow Parameters
@typestring
optional

The type of the serialized message.

Request example cURL
curl https://{tenantDomain}.conductor.one/api/v1/apps/$APP_ID/resource_types/$ID \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $CONDUCTORONE_SDK_API_KEY"
200 Example
{
  "appResourceType": {
    "displayName": "displayName",
    "traitIds": [
      "string"
    ]
  },
  "expanded": [
    {
      "@type": "@type"
    }
  ]
}