Got error when create application from the api

Create application with API not working - getting 403 error
My code as a below

curl --location ‘https://gate.sendbird.com/api/v2/applications
–header ‘Api-Token: XYZ’
–header ‘Content-Type: application/json’
–data ‘{
“app_name”: “sendbird_application_production1”,
“region_key”: “US-1”
}’

Error :
{
“detail”: “Invalid token header”
}
I just copy token from : Dashboard | Sendbird

Hello @Dhrumil_Gor,

You’re using the incorrect token header. Please refer to the documentation on our Organization API: Overview | Chat Platform API | Sendbird Docs

I’m passing wrong header.
Got it. Now Fixed.

const headers = {
“Content-Type”: “application/json; charset=utf8”,
SENDBIRDORGANIZATIONAPITOKEN: <“TOKEN”>,
};