Authentication
Authenticate as organization
Getting the bearer token
Section titled “Getting the bearer token”Make a POST request to the following endpoint with your email and password to receive the bearer token.
POST Endpoint:
https://strapi-3apoh.ondigitalocean.app/api/auth/localRequest Body
Section titled “Request Body”identifier: <your-email>password: <your-password>
Authenticating your request
Section titled “Authenticating your request”After receiving the bearer token, you need to pass the following header while making requests:
Authorization: Bearer ${token}