Adobe Workfront API

Manage Adobe Workfront work objects — projects, tasks, issues, users, teams, documents, timesheets and custom forms — plus Workfront Planning records and approval workflows, through the largest REST contract Adobe publishes.

OpenAPI Specification

adobe-suite-workfront-workflow-openapi.json Raw ↑
{
  "openapi" : "3.0.1",
  "info" : {
    "title" : "Adobe Workfront API",
    "version" : "v19.0"
  },
  "servers" : [ {
    "url" : "https://{domain}.my.workfront.com/attask/api/v19.0",
    "description" : "Production environment"
  }, {
    "url" : "https://{domain}.preview.workfront.com/attask/api/v19.0",
    "description" : "Preview environment"
  } ],
  "security" : [ {
    "ApiKeyHeader" : [ ]
  }, {
    "SessionIDHeader" : [ ]
  }, {
    "AtTaskCookie" : [ ]
  }, {
    "WFAuthCookie" : [ ]
  } ],
  "paths" : {
    "/login" : {
      "summary" : "Login",
      "post" : {
        "summary" : "Login",
        "operationId" : "login",
        "parameters" : [ {
          "name" : "username",
          "in" : "query",
          "description" : "Username",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "password",
          "in" : "query",
          "description" : "Password",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "subdomain",
          "in" : "query",
          "description" : "Subdomain",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "timeToLive",
          "in" : "query",
          "description" : "Session time to live in seconds",
          "required" : false,
          "schema" : {
            "type" : "number",
            "format" : "int32"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Successfully authenticated. The session ID is returned in a cookie named `attask`. You need to include this cookie in subsequent requests.",
            "headers" : {
              "Set-Cookie" : {
                "schema" : {
                  "type" : "string",
                  "description" : "Authentication cookie named `attask`",
                  "example" : "attask=59982a73ed2a4574b4eaba70baf2e11e; Path=/; HttpOnly; Max-Age=28800; Expires=Fri, 27-Sep-2024 19:36:24 GMT"
                }
              }
            },
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object",
                  "properties" : {
                    "data" : {
                      "type" : "object",
                      "properties" : {
                        "sessionID" : {
                          "type" : "string"
                        },
                        "userID" : {
                          "type" : "string"
                        },
                        "userCompanyID" : {
                          "type" : "string"
                        },
                        "isAdmin" : {
                          "type" : "boolean"
                        },
                        "timeZone" : {
                          "type" : "string"
                        },
                        "timeZoneName" : {
                          "type" : "string"
                        },
                        "locale" : {
                          "type" : "string"
                        },
                        "iso3Country" : {
                          "type" : "string"
                        },
                        "iso3Language" : {
                          "type" : "string"
                        },
                        "customerID" : {
                          "type" : "string"
                        },
                        "tenantID" : {
                          "type" : "string"
                        },
                        "hasInsightsAccess" : {
                          "type" : "boolean"
                        },
                        "currency" : {
                          "type" : "object",
                          "properties" : {
                            "ID" : {
                              "type" : "string"
                            },
                            "symbol" : {
                              "type" : "string"
                            },
                            "groupingSeparator" : {
                              "type" : "string"
                            },
                            "decimalSeparator" : {
                              "type" : "string"
                            },
                            "fractionDigits" : {
                              "type" : "number",
                              "format" : "int32"
                            },
                            "useNegativeSign" : {
                              "type" : "boolean"
                            }
                          }
                        },
                        "versionInformation" : {
                          "type" : "object",
                          "properties" : {
                            "version" : {
                              "type" : "string"
                            },
                            "release" : {
                              "type" : "string"
                            },
                            "buildNumber" : {
                              "type" : "string"
                            },
                            "lastUpdated" : {
                              "type" : "string",
                              "format" : "date-time"
                            },
                            "currentAPI" : {
                              "type" : "number",
                              "format" : "int32"
                            },
                            "apiVersions" : {
                              "type" : "object",
                              "additionalProperties" : {
                                "type" : "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security" : [ ]
      }
    },
    "/logout" : {
      "summary" : "Log out",
      "post" : {
        "summary" : "Logout",
        "operationId" : "logout",
        "responses" : {
          "200" : {
            "$ref" : "#/components/responses/200_OK"
          }
        }
      }
    },
    "/session" : {
      "summary" : "Get session information",
      "get" : {
        "summary" : "Get session informatio",
        "operationId" : "session",
        "responses" : {
          "200" : {
            "description" : "Great Success",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object",
                  "properties" : {
                    "data" : {
                      "type" : "object",
                      "properties" : {
                        "sessionID" : {
                          "type" : "string"
                        },
                        "userID" : {
                          "type" : "string"
                        },
                        "userCompanyID" : {
                          "type" : "string"
                        },
                        "isAdmin" : {
                          "type" : "boolean"
                        },
                        "timeZone" : {
                          "type" : "string"
                        },
                        "timeZoneName" : {
                          "type" : "string"
                        },
                        "locale" : {
                          "type" : "string"
                        },
                        "iso3Country" : {
                          "type" : "string"
                        },
                        "iso3Language" : {
                          "type" : "string"
                        },
                        "customerID" : {
                          "type" : "string"
                        },
                        "tenantID" : {
                          "type" : "string"
                        },
                        "hasInsightsAccess" : {
                          "type" : "boolean"
                        },
                        "currency" : {
                          "type" : "object",
                          "properties" : {
                            "ID" : {
                              "type" : "string"
                            },
                            "symbol" : {
                              "type" : "string"
                            },
                            "groupingSeparator" : {
                              "type" : "string"
                            },
                            "decimalSeparator" : {
                              "type" : "string"
                            },
                            "fractionDigits" : {
                              "type" : "number",
                              "format" : "int32"
                            },
                            "useNegativeSign" : {
                              "type" : "boolean"
                            }
                          }
                        },
                        "versionInformation" : {
                          "type" : "object",
                          "properties" : {
                            "version" : {
                              "type" : "string"
                            },
                            "release" : {
                              "type" : "string"
                            },
                            "buildNumber" : {
                              "type" : "string"
                            },
                            "lastUpdated" : {
                              "type" : "string",
                              "format" : "date-time"
                            },
                            "currentAPI" : {
                              "type" : "number",
                              "format" : "int32"
                            },
                            "apiVersions" : {
                              "type" : "object",
                              "additionalProperties" : {
                                "type" : "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/info" : {
      "summary" : "Get customer sso and api version information",
      "get" : {
        "summary" : "Get customer sso and api version information",
        "operationId" : "info",
        "responses" : {
          "200" : {
            "description" : "Great Success",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object",
                  "properties" : {
                    "data" : {
                      "type" : "object",
                      "properties" : {
                        "sso" : {
                          "type" : "object",
                          "properties" : {
                            "ssoType" : {
                              "type" : "string"
                            },
                            "providerURL" : {
                              "type" : "string"
                            },
                            "providerPort" : {
                              "type" : "number",
                              "format" : "int32"
                            },
                            "signoutURL" : {
                              "type" : "string"
                            }
                          }
                        },
                        "versions" : {
                          "type" : "array",
                          "items" : {
                            "type" : "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/acknowledgement/{id}" : {
      "get" : {
        "summary" : "Get for Acknowledgement",
        "operationId" : "getAcknowledgement",
        "parameters" : [ {
          "name" : "id",
          "in" : "path",
          "description" : "Object ID",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "fields",
          "in" : "query",
          "description" : "JSON array defining the fields to retrieve",
          "required" : false,
          "example" : "[\"ID\", \"name\"]",
          "content" : {
            "application/json" : {
              "schema" : {
                "type" : "array",
                "items" : {
                  "type" : "string"
                }
              }
            }
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Great Success",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object",
                  "properties" : {
                    "data" : {
                      "$ref" : "./Acknowledgement.json"
                    }
                  }
                }
              }
            }
          },
          "422" : {
            "$ref" : "#/components/responses/422_UNPROCESSABLE_ENTITY"
          },
          "400" : {
            "$ref" : "#/components/responses/400_BAD_REQUEST"
          },
          "429" : {
            "$ref" : "#/components/responses/429_TOO_MANY_REQUESTS"
          },
          "403" : {
            "$ref" : "#/components/responses/403_FORBIDDEN"
          },
          "401" : {
            "$ref" : "#/components/responses/401_UNAUTHORIZED"
          },
          "404" : {
            "$ref" : "#/components/responses/404_NOT_FOUND"
          },
          "500" : {
            "$ref" : "#/components/responses/500_INTERNAL_SERVER_ERROR"
          },
          "410" : {
            "$ref" : "#/components/responses/410_GONE"
          }
        }
      },
      "put" : {
        "summary" : "Edit a Acknowledgement",
        "operationId" : "editAcknowledgement",
        "parameters" : [ {
          "name" : "id",
          "in" : "path",
          "description" : "Object ID",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "fields",
          "in" : "query",
          "description" : "JSON array defining the fields to retrieve",
          "required" : false,
          "example" : "[\"ID\", \"name\"]",
          "content" : {
            "application/json" : {
              "schema" : {
                "type" : "array",
                "items" : {
                  "type" : "string"
                }
              }
            }
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Great Success",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object",
                  "properties" : {
                    "data" : {
                      "$ref" : "./Acknowledgement.json"
                    }
                  }
                }
              }
            }
          },
          "422" : {
            "$ref" : "#/components/responses/422_UNPROCESSABLE_ENTITY"
          },
          "400" : {
            "$ref" : "#/components/responses/400_BAD_REQUEST"
          },
          "429" : {
            "$ref" : "#/components/responses/429_TOO_MANY_REQUESTS"
          },
          "403" : {
            "$ref" : "#/components/responses/403_FORBIDDEN"
          },
          "401" : {
            "$ref" : "#/components/responses/401_UNAUTHORIZED"
          },
          "404" : {
            "$ref" : "#/components/responses/404_NOT_FOUND"
          },
          "500" : {
            "$ref" : "#/components/responses/500_INTERNAL_SERVER_ERROR"
          },
          "410" : {
            "$ref" : "#/components/responses/410_GONE"
          }
        }
      },
      "delete" : {
        "summary" : "Delete for Acknowledgement",
        "operationId" : "deleteAcknowledgement",
        "parameters" : [ {
          "name" : "id",
          "in" : "path",
          "description" : "Object ID",
          "required" : true,
          "schema" : {
            "type" : "string"
          }
        }, {
          "name" : "force",
          "in" : "query",
          "description" : "force delete flag",
          "required" : false,
          "schema" : {
            "type" : "boolean"
          }
        } ],
        "responses" : {
          "200" : {
            "$ref" : "#/components/responses/200_OK"
          },
          "422" : {
            "$ref" : "#/components/responses/422_UNPROCESSABLE_ENTITY"
          },
          "400" : {
            "$ref" : "#/components/responses/400_BAD_REQUEST"
          },
          "429" : {
            "$ref" : "#/components/responses/429_TOO_MANY_REQUESTS"
          },
          "403" : {
            "$ref" : "#/components/responses/403_FORBIDDEN"
          },
          "401" : {
            "$ref" : "#/components/responses/401_UNAUTHORIZED"
          },
          "404" : {
            "$ref" : "#/components/responses/404_NOT_FOUND"
          },
          "500" : {
            "$ref" : "#/components/responses/500_INTERNAL_SERVER_ERROR"
          },
          "410" : {
            "$ref" : "#/components/responses/410_GONE"
          }
        }
      }
    },
    "/acknowledgement" : {
      "get" : {
        "summary" : "Bulk Get for Acknowledgement",
        "operationId" : "getAcknowledgements",
        "parameters" : [ {
          "name" : "id",
          "in" : "query",
          "description" : "Object IDs",
          "required" : true,
          "schema" : {
            "type" : "string",
            "example" : "id1,id2,id3"
          }
        }, {
          "name" : "fields",
          "in" : "query",
          "description" : "JSON array defining the fields to retrieve",
          "required" : false,
          "example" : "[\"ID\", \"name\"]",
          "content" : {
            "application/json" : {
              "schema" : {
                "type" : "array",
                "items" : {
                  "type" : "string"
                }
              }
            }
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Great Success",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object",
                  "properties" : {
                    "data" : {
                      "anyOf" : [ {
                        "$ref" : "./Acknowledgement.json"
                      }, {
                        "type" : "array",
                        "items" : {
                          "$ref" : "./Acknowledgement.json"
                        }
                      } ]
                    }
                  }
                }
              }
            }
          },
          "422" : {
            "$ref" : "#/components/responses/422_UNPROCESSABLE_ENTITY"
          },
          "400" : {
            "$ref" : "#/components/responses/400_BAD_REQUEST"
          },
          "429" : {
            "$ref" : "#/components/responses/429_TOO_MANY_REQUESTS"
          },
          "403" : {
            "$ref" : "#/components/responses/403_FORBIDDEN"
          },
          "401" : {
            "$ref" : "#/components/responses/401_UNAUTHORIZED"
          },
          "404" : {
            "$ref" : "#/components/responses/404_NOT_FOUND"
          },
          "500" : {
            "$ref" : "#/components/responses/500_INTERNAL_SERVER_ERROR"
          },
          "410" : {
            "$ref" : "#/components/responses/410_GONE"
          }
        }
      },
      "put" : {
        "summary" : "Bulk Edit for Acknowledgement",
        "operationId" : "editAcknowledgements",
        "parameters" : [ {
          "name" : "fields",
          "in" : "query",
          "description" : "JSON array defining the fields to retrieve",
          "required" : false,
          "example" : "[\"ID\", \"name\"]",
          "content" : {
            "application/json" : {
              "schema" : {
                "type" : "array",
                "items" : {
                  "type" : "string"
                }
              }
            }
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "anyOf" : [ {
                  "$ref" : "./Acknowledgement.json"
                }, {
                  "type" : "array",
                  "items" : {
                    "$ref" : "./Acknowledgement.json"
                  }
                } ]
              }
            }
          }
        },
        "responses" : {
          "200" : {
            "description" : "Great Success",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object",
                  "properties" : {
                    "data" : {
                      "anyOf" : [ {
                        "$ref" : "./Acknowledgement.json"
                      }, {
                        "type" : "array",
                        "items" : {
                          "$ref" : "./Acknowledgement.json"
                        }
                      } ]
                    }
                  }
                }
              }
            }
          },
          "422" : {
            "$ref" : "#/components/responses/422_UNPROCESSABLE_ENTITY"
          },
          "400" : {
            "$ref" : "#/components/responses/400_BAD_REQUEST"
          },
          "429" : {
            "$ref" : "#/components/responses/429_TOO_MANY_REQUESTS"
          },
          "403" : {
            "$ref" : "#/components/responses/403_FORBIDDEN"
          },
          "401" : {
            "$ref" : "#/components/responses/401_UNAUTHORIZED"
          },
          "404" : {
            "$ref" : "#/components/responses/404_NOT_FOUND"
          },
          "500" : {
            "$ref" : "#/components/responses/500_INTERNAL_SERVER_ERROR"
          },
          "410" : {
            "$ref" : "#/components/responses/410_GONE"
          }
        }
      },
      "post" : {
        "summary" : "Create a acknowledgement",
        "operationId" : "addAcknowledgements",
        "parameters" : [ {
          "name" : "fields",
          "in" : "query",
          "description" : "JSON array defining the fields to retrieve",
          "required" : false,
          "example" : "[\"ID\", \"name\"]",
          "content" : {
            "application/json" : {
              "schema" : {
                "type" : "array",
                "items" : {
                  "type" : "string"
                }
              }
            }
          }
        } ],
        "requestBody" : {
          "content" : {
            "application/json" : {
              "schema" : {
                "anyOf" : [ {
                  "$ref" : "./Acknowledgement.json"
                }, {
                  "type" : "array",
                  "items" : {
                    "$ref" : "./Acknowledgement.json"
                  }
                } ]
              }
            }
          }
        },
        "responses" : {
          "200" : {
            "description" : "Great Success",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object",
                  "properties" : {
                    "data" : {
                      "anyOf" : [ {
                        "$ref" : "./Acknowledgement.json"
                      }, {
                        "type" : "array",
                        "items" : {
                          "$ref" : "./Acknowledgement.json"
                        }
                      } ]
                    }
                  }
                }
              }
            }
          },
          "422" : {
            "$ref" : "#/components/responses/422_UNPROCESSABLE_ENTITY"
          },
          "400" : {
            "$ref" : "#/components/responses/400_BAD_REQUEST"
          },
          "429" : {
            "$ref" : "#/components/responses/429_TOO_MANY_REQUESTS"
          },
          "403" : {
            "$ref" : "#/components/responses/403_FORBIDDEN"
          },
          "401" : {
            "$ref" : "#/components/responses/401_UNAUTHORIZED"
          },
          "404" : {
            "$ref" : "#/components/responses/404_NOT_FOUND"
          },
          "500" : {
            "$ref" : "#/components/responses/500_INTERNAL_SERVER_ERROR"
          },
          "410" : {
            "$ref" : "#/components/responses/410_GONE"
          }
        }
      },
      "delete" : {
        "summary" : "Bulk Delete for Acknowledgement",
        "operationId" : "deleteAcknowledgements",
        "parameters" : [ {
          "name" : "id",
          "in" : "query",
          "description" : "Object IDs",
          "required" : true,
          "schema" : {
            "type" : "string",
            "example" : "id1,id2,id3"
          }
        }, {
          "name" : "force",
          "in" : "query",
          "description" : "force delete flag",
          "required" : false,
          "schema" : {
            "type" : "boolean"
          }
        } ],
        "responses" : {
          "200" : {
            "$ref" : "#/components/responses/200_OK"
          },
          "422" : {
            "$ref" : "#/components/responses/422_UNPROCESSABLE_ENTITY"
          },
          "400" : {
            "$ref" : "#/components/responses/400_BAD_REQUEST"
          },
          "429" : {
            "$ref" : "#/components/responses/429_TOO_MANY_REQUESTS"
          },
          "403" : {
            "$ref" : "#/components/responses/403_FORBIDDEN"
          },
          "401" : {
            "$ref" : "#/components/responses/401_UNAUTHORIZED"
          },
          "404" : {
            "$ref" : "#/components/responses/404_NOT_FOUND"
          },
          "500" : {
            "$ref" : "#/components/responses/500_INTERNAL_SERVER_ERROR"
          },
          "410" : {
            "$ref" : "#/components/responses/410_GONE"
          }
        }
      }
    },
    "/acknowledgement/count" : {
      "get" : {
        "summary" : "Count of acknowledgement",
        "operationId" : "countAcknowledgements",
        "parameters" : [ {
          "name" : "filters",
          "in" : "query",
          "description" : "JSON representing the filtering conditions",
          "required" : false,
          "content" : {
            "application/json" : {
              "schema" : {
                "type" : "object"
              }
            }
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Great Success",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object",
                  "properties" : {
                    "data" : {
                      "type" : "object",
                      "properties" : {
                        "count" : {
                          "type" : "integer",
                          "format" : "int32"
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "422" : {
            "$ref" : "#/components/responses/422_UNPROCESSABLE_ENTITY"
          },
          "400" : {
            "$ref" : "#/components/responses/400_BAD_REQUEST"
          },
          "429" : {
            "$ref" : "#/components/responses/429_TOO_MANY_REQUESTS"
          },
          "403" : {
            "$ref" : "#/components/responses/403_FORBIDDEN"
          },
          "401" : {
            "$ref" : "#/components/responses/401_UNAUTHORIZED"
          },
          "404" : {
            "$ref" : "#/components/responses/404_NOT_FOUND"
          },
          "500" : {
            "$ref" : "#/components/responses/500_INTERNAL_SERVER_ERROR"
          },
          "410" : {
            "$ref" : "#/components/responses/410_GONE"
          }
        }
      }
    },
    "/acknowledgement/search" : {
      "get" : {
        "summary" : "Search of acknowledgement",
        "operationId" : "searchAcknowledgements",
        "parameters" : [ {
          "name" : "filters",
          "in" : "query",
          "description" : "JSON representing the filtering conditions",
          "required" : false,
          "content" : {
            "application/json" : {
              "schema" : {
                "type" : "object"
              }
            }
          }
        }, {
          "name" : "fields",
          "in" : "query",
          "description" : "JSON array defining the fields to retrieve",
          "required" : false,
          "example" : "[\"ID\", \"name\"]",
          "content" : {
            "application/json" : {
              "schema" : {
                "type" : "array",
                "items" : {
                  "type" : "string"
                }
              }
            }
          }
        }, {
          "name" : "listOptions",
          "in" : "query",
          "description" : "JSON object defining the list options",
          "required" : false,
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "./ListOptions.json"
              }
            }
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Great Success",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object",
                  "properties" : {
                    "data" : {
                      "type" : "array",
                      "items" : {
                        "$ref" : "./Acknowledgement.json"
                      }
                    }
                  }
                }
              }
            }
          },
          "422" : {
            "$ref" : "#/components/responses/422_UNPROCESSABLE_ENTITY"
          },
          "400" : {
            "$ref" : "#/components/responses/400_BAD_REQUEST"
          },
          "429" : {
            "$ref" : "#/components/responses/429_TOO_MANY_REQUESTS"
          },
          "403" : {
            "$ref" : "#/components/responses/403_FORBIDDEN"
          },
          "401" : {
            "$ref" : "#/components/responses/401_UNAUTHORIZED"
          },
          "404" : {
            "$ref" : "#/components/responses/404_NOT_FOUND"
          },
          "500" : {
            "$ref" : "#/components/responses/500_INTERNAL_SERVER_ERROR"
          },
          "410" : {
            "$ref" : "#/components/responses/410_GONE"
          }
        }
      }
    },
    "/acknowledgement/report" : {
      "get" : {
        "summary" : "Report of acknowledgement",
        "operationId" : "reportAcknowledgements",
        "parameters" : [ {
          "name" : "filters",
          "in" : "query",
          "description" : "JSON representing the filtering conditions",
          "required" : false,
          "content" : {
            "application/json" : {
              "schema" : {
                "type" : "object"
              }
            }
          }
        }, {
          "name" : "listOptions",
          "in" : "query",
          "description" : "JSON object defining the list options",
          "required" : false,
          "content" : {
            "application/json" : {
              "schema" : {
                "$ref" : "./ListOptions.json"
              }
            }
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Great Success",
            "content" : {
              "application/json" : {
                "schema" : {
                  "type" : "object",
                  "properties" : {
                    "data" : {
                      "type" : "object"
                    }
                  }
                }
              }
            }
          },
          "422" : {
            "$ref" : "#/components/responses/422_UNPROCESSABLE_ENTITY"
          },
          "400" : {
            "$ref" : "#/components/responses/400_BAD_REQUEST"
          },
          "429" : {
            "$ref" :

# --- truncated at 32 KB (2975 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/adobe-suite/refs/heads/main/openapi/adobe-suite-workfront-workflow-openapi.json