Authentication

You'll need to use Authorization and X-Press-Team HTTP headers to use Frappe Cloud API.

Since you could be a member of multiple teams on Frappe Cloud, it is necessary to set the team using the X-Press-Team header.

Refer to API / Create an Access Token to create an API key and API secret.

Authorization: Token <api-key>:<api-secret>
X-Press-Team: <team>

Request

import requests

headers = {
 "Authorization": "Token <api-key>:<api-secret>",
 "X-Press-Team": "<team>"
}
requests.get("https://frappecloud.com/api/method/press.api.account.me", headers=headers).json()

Response

{
 "message": {
 "user": "<user>",
 "team": "<team>"
 }
}
Discard
Save

On this page

Review Changes ← Back to Content
Message Status Space Raised By Last update on