visits
Get all visitors for an environment
GET
/
environments
/
{environmentId}
/
visitors
Authorization
Path
Query
curl --request GET \
--url https://app.dynamicauth.com/api/v0/environments/{environmentId}/visitors \
--header 'Authorization: <authorization>'
{
"count": 123,
"visitors": [
{
"address": "<string>",
"chain": "ETH",
"createdAt": "2023-11-07T05:31:56Z",
"id": "95b11417-f18f-457f-8804-68e361f9164f",
"projectEnvironmentId": "95b11417-f18f-457f-8804-68e361f9164f",
"provider": "browserExtension",
"walletName": "<string>"
}
]
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
environmentId
string
requiredID of the environment
Query Parameters
filter
object
orderBy
string
$COLUMN_NAME-asc|desc
offset
integer
default: 0The number of items to skip before starting to collect the result set
limit
integer
default: 20The numbers of items to return
Response
200 - application/json
count
integer
visitors
object[]
Was this page helpful?
curl --request GET \
--url https://app.dynamicauth.com/api/v0/environments/{environmentId}/visitors \
--header 'Authorization: <authorization>'
{
"count": 123,
"visitors": [
{
"address": "<string>",
"chain": "ETH",
"createdAt": "2023-11-07T05:31:56Z",
"id": "95b11417-f18f-457f-8804-68e361f9164f",
"projectEnvironmentId": "95b11417-f18f-457f-8804-68e361f9164f",
"provider": "browserExtension",
"walletName": "<string>"
}
]
}