Skip to content

Commit

Permalink
Update docs to partners as an array (#2688)
Browse files Browse the repository at this point in the history
Co-authored-by: Victor <victorigualada@gmail.com>
  • Loading branch information
icflournoy and victorigualada authored Feb 12, 2021
1 parent 3d3af7e commit 12c70e7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dev-docs/modules/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ In addition to the parameters documented above in the Basic Configuration sectio
| Param under userSync.userIds[] | Scope | Type | Description | Example |
| --- | --- | --- | --- | --- |
| params | Required | Object | Details for the Parrable ID. | |
| params.partner | Required | String | A list of one or more comma-separated Parrable Partner Client IDs for the Parrable-aware bid adapters you are using. Please obtain Parrable Partner Client IDs from them and/or obtain your own. | `'30182847-e426-4ff9-b2b5-9ca1324ea09b'` |
| params.partners | Required | Array[String] | A list of one or more Parrable Partner Client IDs for the Parrable-aware bid adapters you are using. Please obtain Parrable Partner Client IDs from them and/or obtain your own. | `[ '30182847-e426-4ff9-b2b5-9ca1324ea09b' ]` |
| params.timezoneFilter | Optional | Object | Configures a timezone or timezone offset filter | |
| params.timezoneFilter.allowedZones | Optional | Array[String] | description | `[ 'America/Anchorage' ]` |
| params.timezoneFilter.allowedOffsets | Optional | Array[Number] | description | `[ -4 ]` |
Expand Down Expand Up @@ -899,7 +899,10 @@ pbjs.setConfig({
userIds: [{
name: `'parrableId'`,
params: {
partner: `'30182847-e426-4ff9-b2b5-9ca1324ea09b'` // change to the Parrable Partner Client ID(s) you received from the Parrable Partners you are using
partners: `[
'30182847-e426-4ff9-b2b5-9ca1324ea09b',
'b07cf20d-8b55-4cd7-9e84-d804ed66b644'
]` // change to the Parrable Partner Client ID(s) you received from the Parrable Partners you are using
}
}],
syncDelay: 1000
Expand Down

0 comments on commit 12c70e7

Please sign in to comment.