GET
/
api
/
v1
/
pass_templates
/
{pass_template_uuid}
curl --request GET \
  --url https://api.passentry.com/api/v1/pass_templates/{pass_template_uuid} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "f0af94dc3c69a80cee32c173",
    "type": "passTemplate",
    "attributes": {
      "backgroundColor": "#EFEFEF",
      "name": "Summer Sale 2023",
      "description": "Summer Sale Pass",
      "labelColor": "#FF8477",
      "textColor": "#29323A",
      "templateType": "storeCard",
      "header": {
        "header_one": {
          "id": "name",
          "label": "Name",
          "default_value": null
        },
        "header_two": {
          "id": null,
          "label": null,
          "default_value": null
        },
        "header_three": {
          "id": null,
          "label": null,
          "default_value": null
        }
      },
      "primary": {
        "primary_one": {
          "id": "attendee",
          "label": "Attendee",
          "default_value": null
        },
        "primary_two": {
          "id": null,
          "label": null,
          "default_value": null
        }
      },
      "secondary": {
        "secOne": {
          "id": "address",
          "label": "Address",
          "default_value": null
        },
        "secTwo": {
          "id": null,
          "label": null,
          "default_value": null
        },
        "secThree": {
          "id": null,
          "label": null,
          "default_value": null
        }
      },
      "auxiliary": {
        "auxOne": {
          "id": "dob",
          "label": "DOB",
          "default_value": null
        },
        "auxTwo": {
          "id": null,
          "label": null,
          "default_value": null
        },
        "auxThree": {
          "id": null,
          "label": null,
          "default_value": null
        }
      },
      "backFields": {
        "backOne": {
          "id": "website",
          "label": "Website",
          "default_value": null
        },
        "backTwo": {
          "id": null,
          "label": null,
          "default_value": null
        },
        "backFive": {
          "id": null,
          "label": null,
          "default_value": null
        },
        "backFour": {
          "id": null,
          "label": null,
          "default_value": null
        },
        "backThree": {
          "id": null,
          "label": null,
          "default_value": null
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

pass_template_uuid
string
required

pass_template_uuid

Response

200
application/json
successful
data
object

Was this page helpful?