Zum Hauptinhalt springen
PUT
/
offer-templates
/
{id}
cURL
curl -X PUT \
 /offer-templates/{id} \
 --header "Content-Type: application/json" \
 --header "Authorization: Bearer <token>" \
 --data '{
    "name": "",
    "sections": [
        ""
    ],
    "type": "section"
}'
{
  "name": "<string>",
  "id": "<string>",
  "sections": [
    "<string>"
  ],
  "type": "section"
}

Documentation Index

Fetch the complete documentation index at: https://docs.fynn.eu/llms.txt

Use this file to discover all available pages before exploring further.

Autorisierungen

Authorization
string
header
erforderlich

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Pfadparameter

id
string
erforderlich

OfferTemplate identifier

Body

The updated OfferTemplate resource

name
string
erforderlich
sections
string[]
type
enum<string>
Standard:section
Verfügbare Optionen:
section,
page
Beispiel:

"section"

Antwort

OfferTemplate resource updated

name
string
erforderlich
id
string
read-only
sections
string[]
type
enum<string>
Standard:section
Verfügbare Optionen:
section,
page
Beispiel:

"section"