Valstorm LogoDev

salesforce Endpoints

All endpoints for the salesforce API group. Great for feeding into an LLM context.

GET

/v1/salesforce/auth/callback

Callback Salesforce

Handles the callback from Salesforce. Exchanges code for token and associates it with the correct user.


Parameters
code
in: query
type: string
state
in: query
type: string
error
in: query
type: string
error_description
in: query
type: string
Responses
200
Successful Response
application/json
{}
422
Validation Error
application/json
{
  "$ref": "#/components/schemas/HTTPValidationError"
}
API Runner

GET

/v1/salesforce/auth/login

Login Salesforce

Redirects the user to Salesforce's login page.


Responses
200
Successful Response
application/json
{}
API Runner