x-ntx-summary
Use the x-ntx-summary Specification Extension to override the label for a field or operation in your Xtension in Nintex Automation Cloud .
The following examples use x-ntx-summary:
- Extract data with a regex.
- Create drop-downs (x-ntx-dynamic-values).
- Hide operations (x-ntx-visibility).
- Create dynamic fields (x-ntx-dynamic-schema).
- Accept an XML response
- Upload files by streaming
- Upload files by URL.
- Download files by URL.
- Download base64 files.
- Upload base64 files.
- Create a suggestion box.
- Add subscribers to Mailchimp.
How to use x-ntx-summary
Add the key x-ntx-summary to the parameter, property or operation you want to re-label, with the value of the new label to use.
Where to use x-ntx-summary
You can use x-ntx-summary:
- In the parameter object of a field.
-
In a property of an object within a parameter.
-
In the property of a response object.
- In the HTTP method object of an operation.
"/example": {
"post": {
"summary": "Post request",
"x-ntx-summary": "New operation name",
"produces": [ "application/json" ],
"parameters": [
{
"name": "exampleField",
"type": "string",
"in": "query",
"x-ntx-summary": "New Field Name"
}
],
"responses": {
"200": {
"description": "OK",
}
}
}
}