GET
/
v1
/
applications
/
{application_id}
curl --location --request GET https://api.writer.com/v1/applications/{application_id} \
 --header "Authorization: Bearer <token>"
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "type": "generation",
  "status": "deployed",
  "inputs": [
    {
      "name": "<string>",
      "input_type": "text",
      "description": "<string>",
      "required": true,
      "options": {
        "list": [
          "<string>"
        ]
      }
    }
  ],
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "last_deployed_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your Writer API key.

Path Parameters

application_id
string
required

Unique identifier of the application to retrieve.

Response

200 - application/json
Successfully retrieved application details.

Detailed application object including its input configuration.

id
string
required

Unique identifier for the application.

name
string
required

Display name of the application.

type
enum<string>
required

The type of no-code application.

Available options:
generation
status
enum<string>
required

Current deployment status of the application. Note: currently only deployed applications are returned.

Available options:
deployed,
draft
inputs
object[]
required

List of input configurations for the application.

Configuration for an individual input field in the application.

created_at
string
required

Timestamp when the application was created.

updated_at
string
required

Timestamp when the application was last updated.

last_deployed_at
string

Timestamp when the application was last deployed.