Dominios

Notes
Nivel experto
The API key should be sent as a Bearer token in the Authorization header of the request. Get your API key.
List

API endpoint:

GET
https://shorten.mdk-system.com/api/v1/domains

Request example:

curl --location --request GET 'https://shorten.mdk-system.com/api/v1/domains' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Tipo
Descripción
search
optional string
The search query.
sort
optional string
Clasificar. Possible values are: desc for Descendente, asc for Ascendente. Defaults to: desc.
per_page
optional int
Resultados por página. Possible values are: 10 to 100. Defaults to: 10.
Show

API endpoint:

GET
https://shorten.mdk-system.com/api/v1/domains/{id}

Request example:

curl --location --request GET 'https://shorten.mdk-system.com/api/v1/domains/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Store

API endpoint:

POST
https://shorten.mdk-system.com/api/v1/domains

Request example:

curl --location --request POST 'https://shorten.mdk-system.com/api/v1/domains' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
Parameter
Tipo
Descripción
name
required string
The space name.
index_page
optional string
The index page to redirect to.
not_found_page
optional string
The 404 page to redirect to.
Update

API endpoint:

PUT PATCH
https://shorten.mdk-system.com/api/v1/domains/{id}

Request example:

curl --location --request PUT 'https://shorten.mdk-system.com/api/v1/domains/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'url={url}'
Parameter
Tipo
Descripción
index_page
optional string
The index page to redirect to.
not_found_page
optional string
The 404 page to redirect to.
Borrar

API endpoint:

DELETE
https://shorten.mdk-system.com/api/v1/domains/{id}

Request example:

curl --location --request DELETE 'https://shorten.mdk-system.com/api/v1/domains/{id}' \
--header 'Authorization: Bearer {api_key}'