GET
/
api
/
v1
/
batches
/
{id}
curl --request GET \
  --url https://api.passentry.com/api/v1/batches/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "8ecfc493-da04-493b-8b98-bf9d5cc29114",
    "type": "walletMessaging",
    "attributes": {
      "name": "Summer Promotion",
      "status": "scheduled",
      "tag": null,
      "content": "Hello, World!",
      "scheduledAt": "2030-03-31T13:16:26Z"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Batch ID

Response

200
application/json
Successful
data
object

Was this page helpful?