List of application component templates
GEThttps://api.cloud.codenow.com/templates/application_components
The operation allows you to retrieve a collection of all available application component templates, which can be used to configure the template property of the ApplicationComponentCreateRequest
.
Request
Header Parameters
CodeNOW API Key
Responses
- 200
- 400
- 401
- 403
- 404
- 429
- 500
List of application component templates
- application/vnd.codenow.v1+json
- Schema
- Example (from schema)
Schema
Array [
]
The unique identifier of the library template.
The currently provided version of the library template, using semantic versioning.
The user-friendly name or label for the library template.
The programming language supported by a library created from the template.
The version of the programming language supported by a library created from the template.
The textual description of the library template, which may provide some additional information in a user-friendly form.
The name of the build system utilized by a library created from the template.
The version of the build system utilized by a library created from the template.
The name of the framework integrated with a library created from the template.
The version of the framework integrated with a library created from the template.
A boolean flag indicating whether the template is user-customized. If set to false, the template is provided by CodeNOW.
properties
object[]
required
[
{
"id": "string",
"version": "string",
"name": "string",
"language": "string",
"languageVersion": "string",
"description": "string",
"buildSystem": "string",
"buildSystemVersion": "string",
"framework": "string",
"frameworkVersion": "string",
"custom": true,
"properties": [
{
"name": "string",
"description": "string",
"type": "string",
"required": true
}
]
}
]
The request was unacceptable, often due to missing a required parameter.
No valid API key provided.
The API key doesn't have permissions to perform the request.
Resource not found.
Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.
Something went wrong on CodeNOW's end.
- curl
- nodejs
- csharp
- java
- CURL
curl -L 'https://api.cloud.codenow.com/templates/application_components' \
-H 'Accept: application/vnd.codenow.v1+json'