# /workFlow/getFlowDetail
> 獲取流程詳情
## 請求參數
|名稱| 類型 |是否必須|描述|
|:---:| :---: |:---:|:---:|
|flowCode| String|是|流程編碼|
## 響應參數
|名稱| 類型 |描述|
|:---:| :---: |:---:|
|flowCode| String|流程編碼|
|flowName| String|流程名稱|
|flowType| Integer|流程類型|
|flowTypeName| String|流程類型名稱|
|flowInstanceCode| String|流程實例編碼|
|flowStatus| String|流程狀態|
|flowStatusName| String|流程狀態名稱|
|formInformation| Object|見[獲取可申請的流程列表](./../獲取可申請流程列表.md)說明|
|remark| String|備注|
|flowContent| String|流程內容(可以直接顯示定義的流程圖)|
|createTime| String|創建時間|
|createBy| String|創建人|
## 請求示例
```json
/workFlow/getFlowDetail?flowCode=8301583567dd4abdac9ad3ea6f6ad938
```
## 響應示例
```json
{
"result": true,
"code": 0,
"msg": "成功",
"data": {
"flowCode": "8301583567dd4abdac9ad3ea6f6ad938",
"flowName": "出差費用報銷",
"flowType": 1,
"flowTypeName": "財務",
"status": 0,
"statusName": "正常",
"formInformation": {
"formType": 0,
"formInformation": {
"formCode": "b7a16c4a8aeb4432b1b2fb553771d872"
}
},
"createTime": "2020-11-09 15:40:02",
"remark": "無",
"flowContent": "流程內容",
"createBy":? "郭杰"
}
}
```