How to render a jsonapi-resources response in an custom controller action?

Viewed 2160

I have implemented my own object creation logic by overriding the create action in a JSONAPI::ResourceController controller.

After successful creation, I want to render the created object representation.

How to render this automatically generated JSON API response, using the jsonapi-resources gem?

Calling the super method does also trigger the default resource creation logic, so this does not work out for me.

class Api::V1::TransactionsController < JSONAPI::ResourceController
  def create
    @transaction = Transaction.create_from_api_request(request.headers, params)

    # render automatic generated JSON API response (object representation)
  end
end
3 Answers
render json: JSON.pretty_generate( JSON.parse @transaction )
def render_json
  result =
    begin
      block_given? ? { success: true, data: yield } : { success: true }
    rescue => e
      json_error_response(e)
    end

  render json: result.to_json
end

def json_error_response(e)
  Rails.logger.error(e.message)

  response = { success: false, errors: e.message }

  render json: response.to_json
end

render_json { values }
Related