2024-02-05 12:40:51 +00:00
|
|
|
require 'appwrite'
|
|
|
|
|
|
|
|
|
|
include Appwrite
|
|
|
|
|
|
|
|
|
|
client = Client.new
|
|
|
|
|
.set_endpoint('https://cloud.appwrite.io/v1') # Your API Endpoint
|
|
|
|
|
.set_project('5df5acd0d48c2') # Your project ID
|
|
|
|
|
.set_key('919c2d18fb5d4...a2ae413da83346ad2') # Your secret API key
|
|
|
|
|
|
|
|
|
|
databases = Databases.new(client)
|
|
|
|
|
|
2024-02-27 08:12:00 +00:00
|
|
|
result = databases.create_url_attribute(
|
2024-02-24 11:34:42 +00:00
|
|
|
database_id: '<DATABASE_ID>',
|
|
|
|
|
collection_id: '<COLLECTION_ID>',
|
2024-02-21 11:31:50 +00:00
|
|
|
key: '',
|
|
|
|
|
required: false,
|
|
|
|
|
default: 'https://example.com', # optional
|
|
|
|
|
array: false # optional
|
|
|
|
|
)
|