Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 48 additions & 7 deletions specs/latest/open-api3-latest-client.json
Original file line number Diff line number Diff line change
Expand Up @@ -28291,6 +28291,9 @@
"description": "Your project ID",
"in": "header",
"x-appwrite": {
"platforms": [
"client"
],
"demo": "<YOUR_PROJECT_ID>"
}
},
Expand All @@ -28302,6 +28305,9 @@
"x-appwrite": {
"location": "path",
"param": "project_id",
"platforms": [
"client"
],
"demo": "<YOUR_PROJECT_ID>"
}
},
Expand All @@ -28311,49 +28317,78 @@
"description": "Your secret JSON Web Token",
"in": "header",
"x-appwrite": {
"platforms": [
"client"
],
"demo": "<YOUR_JWT>"
}
},
"Bearer": {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT",
"description": "The OAuth access token to authenticate with"
"description": "The OAuth access token to authenticate with",
"x-appwrite": {
"platforms": [
"client"
]
}
},
"Locale": {
"type": "apiKey",
"name": "X-Appwrite-Locale",
"description": "",
"in": "header",
"x-appwrite": {
"platforms": [
"client"
],
"demo": "en"
}
},
"Session": {
"type": "apiKey",
"name": "X-Appwrite-Session",
"description": "The user session to authenticate with",
"in": "header"
"in": "header",
"x-appwrite": {
"platforms": [
"client"
]
}
},
"DevKey": {
"type": "apiKey",
"name": "X-Appwrite-Dev-Key",
"description": "Your secret dev API key",
"in": "header"
"in": "header",
"x-appwrite": {
"platforms": [
"client"
]
}
},
"Cookie": {
"type": "apiKey",
"name": "Cookie",
"description": "The user cookie to authenticate with. Used by SDKs that forward an incoming Cookie header in server-side runtimes.",
"in": "header"
"in": "header",
"x-appwrite": {
"platforms": [
"client"
]
}
},
"ImpersonateUserId": {
"type": "apiKey",
"name": "X-Appwrite-Impersonate-User-Id",
"description": "Impersonate a user by ID",
"in": "header",
"x-appwrite": {
"optional": true
"optional": true,
"platforms": [
"client"
]
}
},
"ImpersonateUserEmail": {
Expand All @@ -28362,7 +28397,10 @@
"description": "Impersonate a user by email",
"in": "header",
"x-appwrite": {
"optional": true
"optional": true,
"platforms": [
"client"
]
}
},
"ImpersonateUserPhone": {
Expand All @@ -28371,7 +28409,10 @@
"description": "Impersonate a user by phone",
"in": "header",
"x-appwrite": {
"optional": true
"optional": true,
"platforms": [
"client"
]
}
}
}
Expand Down
Loading