⚒️License keys

License keys API endpoints

Get a license key

GET https://downly.codexapps.co/api/v1/license-keys/{id}

Query Parameters

Name
Type
Description

id*

String

The id of the license key

api_key*

String

API Key

{
    "id": 15,
    "user_id": 1,
    "order_id": 15,
    "tag": "auto-generated",
    "key": "g3na9tPFleBSLxHyfMH4g5d01LGYylOT",
    "created_at": "2023-12-16T14:49:15.000000Z",
    "updated_at": "2023-12-16T14:49:15.000000Z",
    "order": null
}

Get license keys

GET https://downly.codexapps.co/api/v1/license-keys

Query Parameters

Name
Type
Description

page

Page number

api_key*

String

API key

Create a license key

POST https://downly.codexapps.co/api/v1/license-keys

Query Parameters

Name
Type
Description

api_key*

String

API key

Request Body

Name
Type
Description

license_keys*

String

Comma separated license keys

tag

String

Tag of the license key

Update a license key

PUT https://downly.codexapps.co/api/v1/license-keys/{id}

Query Parameters

Name
Type
Description

api_key*

String

API Key

id*

String

The id of the license key

Request Body

Name
Type
Description

tag

String

Tag of the license key

Delete a license key

DELETE https://downly.codexapps.co/api/v1/license-keys/{id}

Query Parameters

Name
Type
Description

id*

String

The id of the license key

Last updated