Get the url of the full sized attachment image using post ID?

This should be able to return the url of the large image.

$largeImg = wp_get_attachment_link( $attachment_id, 'large', false );

There’s also this incase that doesn’t work.

wp_get_attachment_image_src( $attachment_id, 'large' );