Punto final API:
https://m.ideesmx.net/api/v1/domains
Ejemplo de solicitud:
curl --location --request GET 'https://m.ideesmx.net/api/v1/domains' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
search_by
name
para Nombre. Por defecto es: name
.sort_by
id
para Fecha de creación, name
para Nombre. Por defecto es: id
.sort
desc
para Descendente, asc
para Ascendente. Por defecto es: desc
.per_page
10
, 25
, 50
, 100
. Por defecto es: 25
.Punto final API:
https://m.ideesmx.net/api/v1/domains/{id}
Ejemplo de solicitud:
curl --location --request GET 'https://m.ideesmx.net/api/v1/domains/{id}' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
Punto final API:
https://m.ideesmx.net/api/v1/domains
Ejemplo de solicitud:
curl --location --request POST 'https://m.ideesmx.net/api/v1/domains' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}' \ --data-urlencode 'name={name}'
name
index_page
not_found_page
Punto final API:
https://m.ideesmx.net/api/v1/domains/{id}
Ejemplo de solicitud:
curl --location --request PUT 'https://m.ideesmx.net/api/v1/domains/{id}' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}'
index_page
not_found_page
Punto final API:
https://m.ideesmx.net/api/v1/domains/{id}
Ejemplo de solicitud:
curl --location --request DELETE 'https://m.ideesmx.net/api/v1/domains/{id}' \ --header 'Authorization: Bearer {api_key}'