get-guest-photos-by-bib
Use this API to get all photos of a guest from a bib enabled event using bib number
Use this API to get all photos of a guest from a bib-enabled event using BIB
POST
https://api.memzo.ai/v1/get-guest-photos-by-bib/
Headers
Name
Type
Description
Authorization *
YOUR_SECRET_KEY
x-api-key*
String
YOUR_API_KEY
Request Body
Name
Type
Description
event_id*
String
4296
bib_number*
String
A unique identifier assigned to each participant in the event. Typically displayed on a participant’s bib (race number) for easy identification during the event.
index_id
Integer
Used for pagination to retrieve the next set of images. Include the index_id
from the previous API response to fetch the subsequent batch.
{
"bib_session_id": 567748,
"collection_object": [
{
"thumb_image": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/thumbnail/testPradInter904/al11444_al0_20210817_124308.jpg",
"large_image": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/testPradInter904/al11444_al0_20210817_124308.jpg",
"highres_image": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/testPradInter904/highres/al11444_al0_20210817_124308.jpg",
"image_name": "al11444_al0_20210817_124308.jpg"
},
{
"thumb_image": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/thumbnail/testPradInter904/al4220_20210817_124155.jpg",
"large_image": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/testPradInter904/al4220_20210817_124155.jpg",
"highres_image": "https://snapwrap-data.s3.ap-south-1.amazonaws.com/testPradInter904/highres/al4220_20210817_124155.jpg",
"image_name": "al4220_20210817_124155.jpg"
}
],
"collection_count": 2,
"index_id": 0,
"error": false,
"message": "success"
}
Last updated