Get Advertiser Members
POST
/api/public/users/advertisers
const url = 'https://backend.podscribe.ai/api/public/users/advertisers';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"advertiserName":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://backend.podscribe.ai/api/public/users/advertisers \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "advertiserName": "example" }'Get list of team members for a specific advertiser
Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
advertiserName
required
The name of the advertiser
string
Examplegenerated
{ "advertiserName": "example"}Responses
Section titled “Responses”Successfully retrieved advertiser members
Media typeapplication/json
Array<object>
object
email
Email address of the team member
string
invited
Date when the user was invited
string format: date-time
status
Current status of the user
string
Example
[ { "status": "invited" }]Invalid request data
Invalid token
Advertiser not found
Internal server error