Skip to main content
GET
/
{alias}
/
queues
/
{id}
Visualizar fila
curl --request GET \
  --url https://api.dooki.com.br/v2/{alias}/queues/{id} \
  --header 'User-Secret-Key: <api-key>' \
  --header 'User-Token: <api-key>'
{
  "id": 123,
  "store_id": "1",
  "user_id": 123,
  "token": "ecd73150-e747-11e7-9221-0361c8d4d388",
  "total_sent": 5,
  "total_processed": 5,
  "title": "Importando produtos",
  "redirect_url": "https://site.com",
  "finished_at": "2017-04-03 00:00:00",
  "created_at": "2017-04-03 00:00:00",
  "updated_at": "2017-04-03 00:00:00"
}

Authorizations

User-Token
string
header
required
User-Secret-Key
string
header
required

Path Parameters

alias
string
required

Alias da loja

id
integer
required

ID da fila

Response

Detalhes da fila

Resposta contendo os dados da fila

id
integer
store_id
integer
Example:

"1"

user_id
integer
token
string
Example:

"ecd73150-e747-11e7-9221-0361c8d4d388"

total_sent
integer
Example:

5

total_processed
integer
Example:

5

title
string
Example:

"Importando produtos"

redirect_url
string
Example:

"https://site.com"

finished_at
string<date-time>
Example:

"2017-04-03 00:00:00"

created_at
string<date-time>
Example:

"2017-04-03 00:00:00"

updated_at
string<date-time>
Example:

"2017-04-03 00:00:00"

I