Reviewing the doc for Prebid Server implementation, several questions came up.
- Can deletion requests contain more than one ID at once, or must there be multiple requests? The text seems to indicate there can be more than one, but the actual protocol doesn't define arrays.
Specifically, doc says "1st Party determines what identifiers are subject to the request." but then the sub field is defined as a string rather than array of strings.
It would be quite nice if multiple IDs could be in the same request rather than having to process many separate requests since they're going to overlap significantly.
- The
sub field is listed as being a string, but is shown in the examples as an object.

yet
"sub": {
"identifierValue": "28f6dc889e...fe167",
"identifierType": "email",
"identifierFormat": "sha256"
},
- How do data deletion requests map to ExtendedIDs? The document example indicates the
sub field "contains the identifier type". e.g. "email" in the example.
Is it intended that the identifierType match the value in user.eids.source? e.g. pubcid.org, id5-sync.com, etc. Prebid has a list of many EID sources. Entities will need to know where to look for the identifierValue and there are often many EIDs in a single request.
thanks
Reviewing the doc for Prebid Server implementation, several questions came up.
Specifically, doc says "1st Party determines what identifiers are subject to the request." but then the
subfield is defined as a string rather than array of strings.It would be quite nice if multiple IDs could be in the same request rather than having to process many separate requests since they're going to overlap significantly.
subfield is listed as being a string, but is shown in the examples as an object.yet
subfield "contains the identifier type". e.g. "email" in the example.Is it intended that the
identifierTypematch the value in user.eids.source? e.g. pubcid.org, id5-sync.com, etc. Prebid has a list of many EID sources. Entities will need to know where to look for the identifierValue and there are often many EIDs in a single request.thanks