class Api::V1::Platform::AccessTokensController

def create

POST /api/v1/platform/applications/:application_id/access_tokens
def create
  @access_token.provisioned = true
  if @access_token.save
    render :show, status: :created, location: [:api, :v1, @access_token]
  else
    render json: @access_token.errors, status: :unprocessable_entity
  end
end