Skip to content

Instantly share code, notes, and snippets.

@7even
Created December 11, 2018 16:35
Show Gist options
  • Save 7even/a09fe8e814146f4a28a677244bb40a83 to your computer and use it in GitHub Desktop.
Save 7even/a09fe8e814146f4a28a677244bb40a83 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'sinatra'
require 'oj'
Oj.default_options = {
mode: :compat
}
post '/client/v4/zones/:zone_id/purge_cache' do
content_type 'application/json'
Oj.dump(
success: true,
errors: [],
messages: [],
result: {
id: '9a7806061c88ada191ed06f989cc3dac'
}
)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment