Submit recharge request
POST
/api/v1/plans/recharge-request
const url = 'https://dashboard.justcrawl.io/api/v1/plans/recharge-request';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"orgCountry":"example","phone":"example","expectedMonthlyVolume":"example","message":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://dashboard.justcrawl.io/api/v1/plans/recharge-request \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "orgCountry": "example", "phone": "example", "expectedMonthlyVolume": "example", "message": "example" }'Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
object
orgCountry
required
string
phone
required
string
expectedMonthlyVolume
required
string
message
string
Example generated
{ "orgCountry": "example", "phone": "example", "expectedMonthlyVolume": "example", "message": "example"}Responses
Section titled “ Responses ”Recharge request created