Edits history of script submission #6080 for ' Create Contact (accelo)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Accelo = {
    	clientId: string
    	clientSecret: string
    	deployment: string
    }
    
    export async function main(
    	resource: Accelo,
    	data: {
    		firstname: string
    		surname: string
    		company_id: number
    		middlename?: string
    		username?: string
    		password?: string
    		title?: string
    		comments?: string
    		status?: number
    		standing?: string
    		email?: string
    		country_id?: number
    		physical_address_id?: number
    		postal_address_id?: number
    		phone?: string
    		fax?: string
    		position?: string
    		communication?: string
    		invoice_method?: string
    	}
    ) {
    	// Fetch the access token
    	const accessTokenResponse = (await (
    		await fetch(`https://${resource.deployment}.api.accelo.com/oauth2/v0/token`, {
    			method: 'POST',
    			headers: {
    				'Content-Type': 'application/x-www-form-urlencoded',
    				Authorization: `Basic ${Buffer.from(
    					`${resource.clientId}:${resource.clientSecret}`
    				).toString('base64')}`
    			},
    			body: new URLSearchParams({
    				grant_type: 'client_credentials',
    				scope: 'write(all)'
    			})
    		})
    	).json()) as any
    	const accessToken = accessTokenResponse.access_token
    
    	const form = new URLSearchParams()
    	Object.entries(data).forEach(([key, value]) => value && form.append(key, value + ''))
    
    	return (
    		await fetch(`https://${resource.deployment}.api.accelo.com/api/v0/contacts`, {
    			method: 'POST',
    			headers: {
    				'Content-Type': 'application/x-www-form-urlencoded',
    				Authorization: `Bearer ${accessToken}`
    			},
    			body: form
    		})
    	).json()
    }
    

    Submitted by hugo697 396 days ago

  • bun
    type Accelo = {
    	clientId: string
    	clientSecret: string
    	deployment: string
    }
    
    export async function main(
    	resource: Accelo,
    	data: {
    		firstname: string
    		surname: string
    		company_id: number
    		middlename?: string
    		username?: string
    		password?: string
    		title?: string
    		comments?: string
    		status?: number
    		standing?: string
    		email?: string
    		country_id?: number
    		physical_address_id?: number
    		postal_address_id?: number
    		phone?: string
    		fax?: string
    		position?: string
    		communication?: string
    		invoice_method?: string
    	}
    ) {
    	// Fetch the access token
    	const accessTokenResponse = (await (
    		await fetch(`https://${resource.deployment}.api.accelo.com/oauth2/v0/token`, {
    			method: 'POST',
    			headers: {
    				'Content-Type': 'application/x-www-form-urlencoded',
    				Authorization: `Basic ${Buffer.from(
    					`${resource.clientId}:${resource.clientSecret}`
    				).toString('base64')}`
    			},
    			body: new URLSearchParams({
    				grant_type: 'client_credentials',
    				scope: 'write(all)'
    			})
    		})
    	).json()) as any
    	const accessToken = accessTokenResponse.access_token
    
    	const form = new URLSearchParams()
    	Object.entries(data).forEach(([key, value]) => value && form.append(key, value + ''))
    
    	return (
    		await fetch(`https://${resource.deployment}.api.accelo.com/api/v0/contacts`, {
    			method: 'POST',
    			headers: {
    				'Content-Type': 'application/x-www-form-urlencoded',
    				Authorization: `Bearer ${accessToken}`
    			},
    			body: form
    		})
    	).json()
    }
    

    Submitted by hugo697 761 days ago