Skip to main content

oauth_tickets

Creates, updates, deletes, gets or lists an oauth_tickets resource.

Overview

Nameoauth_tickets
TypeResource
Idnetlify.ticket.oauth_tickets

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createTicketinsertclient_id
showTicketexecticket_id

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
client_idstring
ticket_idstring

INSERT examples

No description available.

INSERT INTO netlify.ticket.oauth_tickets (
client_id
)
SELECT
'{{ client_id }}'
RETURNING
id,
client_id,
authorized,
created_at
;

Lifecycle Methods

ok

EXEC netlify.ticket.oauth_tickets.showTicket 
@ticket_id='{{ ticket_id }}' --required
;