Retrieve credential structure for an app
GEThttps://embedded.runalloy.com/2024-03//metadata/credentials/:app
Request
Path Parameters
app stringrequired
Name of App (camelCased, can be found in App Metadata response)
Header Parameters
Authorization string
Default value: bearer YOUR_API_KEY
Responses
- 200
- 400
200
- application/json
- Schema
- Example (from schema)
- Result
Schema
data
object
{
"data": {
"name": "shopify",
"icon": "https://cdn.runalloy.com/icons/shopify.png",
"isOauth": true,
"properties": [
{
"name": "shopSubdomain",
"displayName": "Shop Subdomain",
"description": "Enter your store subdomain. If your store domain is example.myshopify.com, the subdomain would be example."
}
]
}
}
{
"data": {
"name": "shopify",
"icon": "https://cdn.runalloy.com/icons/shopify.png",
"isOauth": true,
"properties": [
{
"name": "shopSubdomain",
"displayName": "Shop Subdomain",
"description": "Enter your store subdomain. If your store domain is example.myshopify.com, the subdomain would be example."
}
]
}
}
400
- application/json
- Schema
- Example (from schema)
- Result
Schema
object
{}
{}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://embedded.runalloy.com/2024-03/metadata/credentials/:app' \
-H 'Accept: application/json'
ResponseClear