Obrigado por gerar o seu link conosco, gostou da nossa ferramenta? tem interesse em usar com o seu domínio e aproveitar todos os recursos, fale conosco. (meajude@conectejet.com.br)

Dominios

Notes
Nível de especialista
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://url.conectejet.com.br/api/v1/domains

Request example:

curl --location --request GET 'https://url.conectejet.com.br/api/v1/domains' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Tipo
Descrição
search
optional string
The search query.
search_by
optional string
Pesquise por. Possible values are: name for Nome. Padrão para: name.
sort_by
optional string
Sort by. Possible values are: id for Date created, name for Nome. Padrão para: id.
sort
optional string
Sort. Possible values are: desc for Descending, asc for Ascending. Padrão para: desc.
per_page
optional integer
Results per page. Possible values are: 10, 25, 50, 100. Padrão para: 10.
Show

API endpoint:

GET
https://url.conectejet.com.br/api/v1/domains/{id}

Request example:

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

API endpoint:

POST
https://url.conectejet.com.br/api/v1/domains

Request example:

curl --location --request POST 'https://url.conectejet.com.br/api/v1/domains' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'name={name}'
Parameter
Tipo
Descrição
name
required string
The domain 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://url.conectejet.com.br/api/v1/domains/{id}

Request example:

curl --location --request PUT 'https://url.conectejet.com.br/api/v1/domains/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
Parameter
Tipo
Descrição
index_page
optional string
The index page to redirect to.
not_found_page
optional string
The 404 page to redirect to.
Excluir

API endpoint:

DELETE
https://url.conectejet.com.br/api/v1/domains/{id}

Request example:

curl --location --request DELETE 'https://url.conectejet.com.br/api/v1/domains/{id}' \
--header 'Authorization: Bearer {api_key}'