API v2 Documentation (Draft)
Client API > Response
Client API > Contacts
Client API > Display
Client API > Environment
Client API > User
Client API > File Upload
Roles
Me
Management API > Responses
Management API > Contacts
Management API > Contact Attribute Keys
Management API > Surveys > Contact Links
Management API > Webhooks
Organizations API > Teams
Organizations API > Project Teams
Organizations API > Users
Me
Me
Fetches the projects and organizations associated with the API key.
GET
/
me
curl --request GET \
--url https://app.formbricks.com/api/v2/me \
--header 'x-api-key: <api-key>'
{
"organizationId": "<string>",
"organizationAccess": {
"accessControl": {
"read": true,
"write": true
}
},
"environments": [
{
"environmentId": "<string>",
"environmentType": "production",
"permission": "read",
"projectId": "<string>",
"projectName": "<string>"
}
]
}
Authorizations
Use your Formbricks x-api-key to authenticate.
Response
200 - application/json
API key information retrieved successfully.
Was this page helpful?
curl --request GET \
--url https://app.formbricks.com/api/v2/me \
--header 'x-api-key: <api-key>'
{
"organizationId": "<string>",
"organizationAccess": {
"accessControl": {
"read": true,
"write": true
}
},
"environments": [
{
"environmentId": "<string>",
"environmentType": "production",
"permission": "read",
"projectId": "<string>",
"projectName": "<string>"
}
]
}